diff --git a/cmd/sserver/main.go b/cmd/sserver/main.go index 4ca9867..6f8de53 100644 --- a/cmd/sserver/main.go +++ b/cmd/sserver/main.go @@ -5,9 +5,7 @@ import ( "net/http" "os" - "github.com/Xe/ln/ex" "github.com/rakyll/statik/fs" - _ "git.xeserv.us/xena/tulpaforce.tk/cmd/sserver/statik" ) @@ -23,5 +21,5 @@ func main() { } log.Printf("Listening on http://127.0.0.1:%s", p) - log.Fatal(http.ListenAndServe(":"+p, ex.HTTPLog(http.FileServer(sfs)))) + log.Fatal(http.ListenAndServe(":"+p, http.FileServer(sfs))) }