Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 package chromiumbuildstats | |
| 2 | |
| 3 import ( | |
| 4 "fmt" | |
| 5 "net/http" | |
| 6 ) | |
| 7 | |
| 8 func init() { | |
| 9 http.HandleFunc("/", handler) | |
| 10 } | |
| 11 | |
| 12 func handler(w http.ResponseWriter, r *http.Request) { | |
| 13 fmt.Fprintf(w, "Hello, world!") | |
| 14 } | |
| OLD | NEW |