diff options
author | 2021-05-31 17:36:35 +0200 | |
---|---|---|
committer | 2021-05-31 17:36:35 +0200 | |
commit | 6ac6f8d614d17910d929981bde7d80d8ec2c0b6e (patch) | |
tree | e7a51ba572a7cc880bbc22dacb999236ac6e36e6 /internal/api/client/list/listsgets.go | |
parent | Move a lot of stuff + tidy stuff (#37) (diff) | |
download | gotosocial-6ac6f8d614d17910d929981bde7d80d8ec2c0b6e.tar.xz |
Tidy + timeline embetterment (#38)
* tidy up timelines a bit + stub out some endpoints
* who's faved and who's boosted, reblog notifs
* linting
* Update progress with new endpoints
Diffstat (limited to 'internal/api/client/list/listsgets.go')
-rw-r--r-- | internal/api/client/list/listsgets.go | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/internal/api/client/list/listsgets.go b/internal/api/client/list/listsgets.go new file mode 100644 index 000000000..fd695454b --- /dev/null +++ b/internal/api/client/list/listsgets.go @@ -0,0 +1,8 @@ +package list + +import "github.com/gin-gonic/gin" + +// ListsGETHandler returns a list of lists created by/for the authed account +func (m *Module) ListsGETHandler(c *gin.Context) { + +} |