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

import (
	"net/http"
)

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

	})
	http
}