package main import ( "net/http" ) func main() { fs := http.FileServer(http.Dir("./src")) http.Handle("/", fs) http.ListenAndServe(":8082", nil) }