Removed started from launch

This commit is contained in:
Ash Leece 2021-01-18 21:00:24 +00:00
parent 71cba8b7ec
commit 633bcf65ad
1 changed files with 1 additions and 1 deletions

View File

@ -13,6 +13,6 @@ func main() {
flag.Parse()
fs := http.FileServer(http.Dir(*dir))
log.Printf("Starting listening on %s", *port)
log.Printf("Listening on %s", *port)
log.Fatalln(http.ListenAndServe(fmt.Sprintf(":%s", *port), fs))
}