This commit is contained in:
Andrea Fazzi 2021-03-12 09:47:15 +01:00
parent c6a86cf11e
commit cda3938803

View file

@ -9,6 +9,6 @@ func main() {
fs := http.FileServer(http.Dir("public"))
http.Handle("/", fs)
log.Println("Starting the web server...")
log.Println("Starting the web server for OEF...")
http.ListenAndServe(":3000", nil)
}