diff options
author | Thomas Voss <mail@thomasvoss.com> | 2025-06-13 23:34:29 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2025-06-13 23:34:46 +0200 |
commit | efbcd857112fdce69006207c853bb1a4a37ca67c (patch) | |
tree | 5bb1c72b03e57335bdc6f13224990f28be10c667 /src/http.go | |
parent | f9accf7d1ebc1c4b2a07818b0a96c8cd3a73666d (diff) |
Migrate towards using os.Root
Diffstat (limited to 'src/http.go')
-rw-r--r-- | src/http.go | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/http.go b/src/http.go index c9896b5..a5897b4 100644 --- a/src/http.go +++ b/src/http.go @@ -27,7 +27,6 @@ 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) |