Browse Source

initial commit

master
Brett Langdon 10 years ago
commit
6efd938cac
1 changed files with 19 additions and 0 deletions
  1. +19
    -0
      github-keys.go

+ 19
- 0
github-keys.go View File

@ -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))
}

Loading…
Cancel
Save