Fixup typo

Co-authored-by: Sharad Bhat <sharad.mbhat@gmail.com>
This commit is contained in:
Pierre Dubouilh
2020-10-04 16:57:03 +02:00
committed by Pierre Dubouilh
co-authored by Sharad Bhat
parent 97e24cc513
commit 1992815b41
+1 -1
View File
@@ -231,7 +231,7 @@ func main() {
http.HandleFunc(*extraPath+"zip", zipRPC)
http.HandleFunc("/", doContent)
fs = http.StripPrefix(*extraPath, http.FileServer(http.Dir(initPath)))
fmt.Printf("Gossa startig on directory %s\nListening on http://%s:%s%s\n", initPath, *host, *port, *extraPath)
fmt.Printf("Gossa starting on directory %s\nListening on http://%s:%s%s\n", initPath, *host, *port, *extraPath)
err = http.ListenAndServe(*host+":"+*port, nil)
check(err)
}