View redirect.go
package redirect | |
import ( | |
"net/http" | |
) | |
func init() { | |
http.HandleFunc("/", handler) | |
} |