commit 6efd938cac2829511a0a3821f0faea55a92958c4 Author: brettlangdon Date: Sat Dec 12 10:01:25 2015 -0500 initial commit 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)) +}