last_light/server/main.go

8 lines
115 B
Go
Raw Normal View History

2024-06-08 10:09:34 +03:00
package main
import "net/http"
func main() {
http.ListenAndServe(`:8080`, http.FileServer(http.Dir(`./web`)))
}