From 6efd938cac2829511a0a3821f0faea55a92958c4 Mon Sep 17 00:00:00 2001 From: brettlangdon Date: Sat, 12 Dec 2015 10:01:25 -0500 Subject: [PATCH] initial commit --- github-keys.go | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 github-keys.go diff --git a/github-keys.go b/github-keys.go new file mode 100644 index 0000000..cbeafb6 --- /dev/null +++ b/github-keys.go @@ -0,0 +1,19 @@ +package main + +import ( + "log" + "net/http" +) + +var cached []string = make([]string, 0) +var ttl int = 0 + +func handle(w http.ResponseWriter, r *http.Request) { + +} + +func main() { + + http.HandleFunc("/", handle) + log.Fatal(http.ListenAndServe(":8000", nil)) +}