summaryrefslogtreecommitdiff
path: root/main.go
blob: f0994af7a950707799f324a5675e69ae01c232bb (plain)
1
2
3
4
5
6
7
8
9
10
11
package main

import (
	"net/http"
)

func main() {
	http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {

	})
}