evilthings/main.go

13 lines
187 B
Go
Raw Normal View History

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) {
}