diff --git a/main.go b/main.go index 298aa1b..380a76b 100644 --- a/main.go +++ b/main.go @@ -1,4 +1,4 @@ -//go:generate statik -src=web/ -include=*.html,*.css,*.js,*.template +//go:generate statik -f -src=web/ -include=*.html,*.css,*.js,*.template package main diff --git a/tools.go b/tools.go new file mode 100644 index 0000000..2c06b8f --- /dev/null +++ b/tools.go @@ -0,0 +1,7 @@ +// +build tools + +package tools + +import ( + _ "github.com/rakyll/statik" +)