Skip to content

Instantly share code, notes, and snippets.

@boj
Created December 1, 2014 07:58
Show Gist options
  • Save boj/c7fde2961dbbd2414e8e to your computer and use it in GitHub Desktop.
Save boj/c7fde2961dbbd2414e8e to your computer and use it in GitHub Desktop.
package main
import (
"net/http"
)
func Call(w http.ResponseWriter, r *http.Request) {
}
func main() {
http.HandleFunc("/", Call)
if err := http.ListenAndServe(":8888", nil); err != nil {
panic(err)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment