last_light/server/main.go

7 lines
115 B
Go

package main
import "net/http"
func main() {
http.ListenAndServe(`:8080`, http.FileServer(http.Dir(`./web`)))
}