summaryrefslogtreecommitdiff
path: root/internal/api/client/list
diff options
context:
space:
mode:
Diffstat (limited to 'internal/api/client/list')
-rw-r--r--internal/api/client/list/listsgets.go8
1 files changed, 6 insertions, 2 deletions
diff --git a/internal/api/client/list/listsgets.go b/internal/api/client/list/listsgets.go
index fd695454b..5d8d7d194 100644
--- a/internal/api/client/list/listsgets.go
+++ b/internal/api/client/list/listsgets.go
@@ -1,8 +1,12 @@
package list
-import "github.com/gin-gonic/gin"
+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{})
}