wiki/docker/serve.go

10 lines
155 B
Go
Raw Normal View History

2024-02-17 22:02:11 +01:00
package main
import "net/http"
func main() {
fs := http.FileServer(http.Dir("./static"))
http.Handle("GET /", fs)
http.ListenAndServe(":3000", nil)
}