type anything anyType
// ServeHTTP implements an interface
func (s anything) ServeHTTP(w http.ResponseWriter, r *http.Request) {
// do what your server wants to do
}
handler := anyThing{}
// func ListenAndServe(addr string, handler Handler) error
log.Fatal(http.ListenAndServe(address, handler))