diff options
author | FChannel <> | 2022-06-18 13:57:30 -0700 |
---|---|---|
committer | FChannel <> | 2022-06-19 12:53:29 -0700 |
commit | 25829d2d0e379c323b8f2ae6e7c2aad7548f0a30 (patch) | |
tree | c828eb5bb04ce04141c717c26b637a59b32ab979 /main.go | |
parent | f3d1683d6562afb30522afb98fb3a22456473275 (diff) |
sticky and lock implemented
Diffstat (limited to 'main.go')
-rw-r--r-- | main.go | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -89,6 +89,8 @@ func main() { app.All("/blacklist", routes.BoardBlacklist) app.All("/report", routes.ReportPost) app.Get("/make-report", routes.ReportGet) + app.Get("/sticky", routes.Sticky) + app.Get("/lock", routes.Lock) // Webfinger routes app.Get("/.well-known/webfinger", routes.Webfinger) |