10 lines
155 B
Go
10 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)
|
||
|
}
|