13 lines
187 B
Go
13 lines
187 B
Go
|
package main
|
||
|
|
||
|
import "net/http"
|
||
|
|
||
|
func main() {
|
||
|
http.HandleFunc("/", handleRoot)
|
||
|
http.ListenAndServe("0.0.0.0:8000", nil)
|
||
|
}
|
||
|
|
||
|
func handleRoot(w http.ResponseWriter, r *http.Request) {
|
||
|
|
||
|
}
|