This commit is contained in:
2025-10-05 04:19:21 +02:00
parent 6df63dc4c1
commit f5040fd91e
4 changed files with 158 additions and 2 deletions

View File

@@ -12,6 +12,7 @@ func Setup() {
r.Get("/articles", article.ArticleQueryHandler)
r.Get("/articles-download", article.ArticleDownloadHandler)
r.Handle("/tiles/", http.StripPrefix("/tiles/", http.FileServer(http.Dir("tiles"))))
http.ListenAndServe(":8080", r)
}