9 lines
155 B
Go
9 lines
155 B
Go
package main
|
|
|
|
import "net/http"
|
|
|
|
func main() {
|
|
fs := http.FileServer(http.Dir("./static"))
|
|
http.Handle("GET /", fs)
|
|
http.ListenAndServe(":3000", nil)
|
|
}
|