mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-11-08 23:57:30 -06:00
12 lines
233 B
Go
12 lines
233 B
Go
package emoji
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
// EmojisGETHandler returns a list of custom emojis enabled on the instance
|
|
func (m *Module) EmojisGETHandler(c *gin.Context) {
|
|
c.JSON(http.StatusOK, []string{})
|
|
}
|