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

Unified 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 side-by-side diff with in-line comments
Download patch
« 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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: appengine/chromium_build_stats/default/app.go
diff --git a/appengine/chromium_build_stats/default/app.go b/appengine/chromium_build_stats/default/app.go
new file mode 100644
index 0000000000000000000000000000000000000000..bf82279f3326cc68086ce6be899ef0d3395bf43b
--- /dev/null
+++ b/appengine/chromium_build_stats/default/app.go
@@ -0,0 +1,14 @@
+package chromiumbuildstats
+
+import (
+ "fmt"
+ "net/http"
+)
+
+func init() {
+ http.HandleFunc("/", handler)
+}
+
+func handler(w http.ResponseWriter, r *http.Request) {
+ fmt.Fprintf(w, "Hello, world!")
+}
« 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