aboutsummaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
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)