aboutsummaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorAnhgelus Morhtuuzh <william@herges.fr>2025-10-02 19:33:20 +0200
committerAnhgelus Morhtuuzh <william@herges.fr>2025-10-02 19:33:20 +0200
commitc000d9482e183f74b6237ecaeb7f06c0862413de (patch)
tree96d36e872f7e3826692f8b11d6152834bf90ba57 /main.go
parent0ec5a0769f3c2dc851948a1011fa9062ff5c657b (diff)
feat(backend): handle log
Diffstat (limited to 'main.go')
-rw-r--r--main.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/main.go b/main.go
index abab2ea..f50866d 100644
--- a/main.go
+++ b/main.go
@@ -65,6 +65,7 @@ func main() {
r := backend.NewRouter(dev, cfg)
backend.HandleHome(r)
+ backend.HandleLogs(r)
backend.HandleStaticFiles(r, "/assets", backend.UsableEmbedFS("dist", embeds))
backend.HandleStaticFiles(r, "/static", os.DirFS(publicDir))