diff --git a/app.go b/app.go index f0c90f5..ecdaf50 100644 --- a/app.go +++ b/app.go @@ -33,7 +33,7 @@ func daemon(n *commando.Node) error { } app := gin.Default() - app.StaticFS("/", http.Dir("public")) + app.StaticFS("/", http.Dir("public/")) fmt.Printf("web server binding at: http://%s:%d\n", cnf.Service.Host, cnf.Service.Port) if err = app.Run(fmt.Sprintf("%s:%d", cnf.Service.Host, cnf.Service.Port)); err != nil {