1
0
Fork 0
forked from boyska/feedpanel
feedpanel/cmd/userpanel/main.go

16 lines
268 B
Go
Raw Normal View History

2018-09-30 11:06:46 +02:00
package main
import (
"fmt"
"net/http"
)
func main() {
http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
w.WriteHeader(501)
fmt.Fprintf(w, "Nothing has been implemented. Just cross your fingers.\n")
})
http.ListenAndServe(":8000", nil)
}