aboutsummaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorKushBlazingJudah <59340248+KushBlazingJudah@users.noreply.github.com>2021-11-19 20:52:13 -0400
committerFChannel <>2022-06-19 12:53:29 -0700
commit363952bfdbae19758e0241e438b95da65d084331 (patch)
tree3a47305072cfd7ba5246ba19a8ed8dbbb0bf7508 /main.go
parent0a90446114512da05273e2c53b8c6fe5303a824e (diff)
will deal with view later
Diffstat (limited to 'main.go')
-rw-r--r--main.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/main.go b/main.go
index b7c0c38..3049d71 100644
--- a/main.go
+++ b/main.go
@@ -132,8 +132,9 @@ func main() {
*/
app.Get("/:actor", routes.OutboxGet)
+ app.Get("/:actor/catalog", routes.CatalogGet)
- app.Get("/:actor/:post", routes.ActorPostGet)
+ app.Get("/:actor/:post", routes.PostGet)
app.Get("/post", routes.ActorPost)
app.Get("/:actor/inbox", routes.ActorInbox)