diff options
author | KushBlazingJudah <59340248+KushBlazingJudah@users.noreply.github.com> | 2021-11-19 20:52:13 -0400 |
---|---|---|
committer | FChannel <> | 2022-06-19 12:53:29 -0700 |
commit | 363952bfdbae19758e0241e438b95da65d084331 (patch) | |
tree | 3a47305072cfd7ba5246ba19a8ed8dbbb0bf7508 /main.go | |
parent | 0a90446114512da05273e2c53b8c6fe5303a824e (diff) |
will deal with view later
Diffstat (limited to 'main.go')
-rw-r--r-- | main.go | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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) |