summaryrefslogtreecommitdiffhomepage
path: root/src/http.go
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2025-01-12 16:10:38 +0100
committerThomas Voss <mail@thomasvoss.com> 2025-01-12 16:10:38 +0100
commit4cd4a16f7d226cc4bc6ea0eb9d1f2029ed6b4103 (patch)
treefcf8eb1113f24a6fcd96f00449bb29724ac11ab4 /src/http.go
parentdd5f14befa96d71ae2b32f7809de99cf50dd7f07 (diff)
Add the banknotes/codes pageHEADmaster
Diffstat (limited to 'src/http.go')
-rw-r--r--src/http.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/http.go b/src/http.go
index 3feda8c..04c17de 100644
--- a/src/http.go
+++ b/src/http.go
@@ -29,6 +29,8 @@ func Run(port int) {
mwareC := chain(mwareB, countryHandler) // [C]ountry
mwareM := chain(mwareC, mintageHandler) // [M]intage
+ /* TODO: Put this all in an embed.FS */
+ mux.Handle("GET /codes/", fs)
mux.Handle("GET /designs/", fs)
mux.Handle("GET /favicon.ico", fs)
mux.Handle("GET /fonts/", fs)