blob: a813ae68715bded24d7117e70c1c309110ed8ca4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
package main
import (
"flag"
"fmt"
"net/http"
"github.com/gorilla/mux"
)
var (
port *int
)
func registerHTTPFlags() {
port = flag.Int("port", 8080, "The port for HTTP")
}
func setupHTTPServer() http.Server {
r := mux.NewRouter()
r.HandleFunc("/", indexHandler)
return http.Server{
Addr: fmt.Sprintf("0.0.0.0:%d", *port),
Handler: r,
}
}
// Host the index file
func indexHandler(w http.ResponseWriter, r *http.Request) {
fmt.Fprintf(w, "%s", "Hello World!\n")
}
|