oef_website/main.go

15 lines
213 B
Go
Raw Normal View History

2019-11-11 16:52:47 +01:00
package main
import (
"log"
"net/http"
)
func main() {
fs := http.FileServer(http.Dir("public"))
http.Handle("/", fs)
2021-03-12 09:47:15 +01:00
log.Println("Starting the web server for OEF...")
2019-11-11 16:52:47 +01:00
http.ListenAndServe(":3000", nil)
}