diff options
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/server/main.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/server/main.go b/cmd/server/main.go index 1591102..b940145 100644 --- a/cmd/server/main.go +++ b/cmd/server/main.go @@ -72,7 +72,7 @@ func main() { } r := router.New() - r.GET("/static/{filepath:*}", ext.FileServer(static.Static, "static/")) + r.GET("/static/{filepath:*}", ext.FileServer(static.Static)) // repository var ( |