diff --git a/main.go b/main.go index 61ffa3e..2eb8db3 100644 --- a/main.go +++ b/main.go @@ -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) }