Host GitHub user public keys
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

19 lines
253 B

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