mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-11-05 09:42:25 -06:00
12 lines
232 B
Go
12 lines
232 B
Go
package list
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
// ListsGETHandler returns a list of lists created by/for the authed account
|
|
func (m *Module) ListsGETHandler(c *gin.Context) {
|
|
c.JSON(http.StatusOK, []string{})
|
|
}
|