Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(237)

Side by Side Diff: appengine/chromium_build_stats/default/app.go

Issue 467303003: add appengine/chromium_build_stats (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: rebase Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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 }
OLDNEW
« no previous file with comments | « appengine/chromium_build_stats/README.md ('k') | appengine/chromium_build_stats/default/app.yaml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698