diff options
Diffstat (limited to 'handlers.go')
| -rw-r--r-- | handlers.go | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/handlers.go b/handlers.go index 0f6593f..28219e8 100644 --- a/handlers.go +++ b/handlers.go @@ -6,14 +6,9 @@ import ( ) func init() { - router.HandleFunc("/", hello) router.HandleFunc("/version", version) } -func hello(w http.ResponseWriter, r *http.Request) { - fmt.Fprintln(w, "Hello world!") -} - func version(w http.ResponseWriter, r *http.Request) { fmt.Fprint(w, versionTxt) } |
