summaryrefslogtreecommitdiff
path: root/internal/api/client/list/listsgets.go
blob: 5d8d7d194b42d9da451c3750d84f9c777081b6b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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{})
}