diff options
Diffstat (limited to 'main.go')
| -rw-r--r-- | main.go | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -48,6 +48,7 @@ func main() { // Set up the handlers and server. mux := http.NewServeMux() mux.Handle("/{arc}", &cfg) + mux.Handle("/static/", http.StripPrefix("/static/", http.FileServer(http.Dir("views/static")))) log.Fatal(runServer(mux, *port)) } |
