summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorjaerri <62021987+jaerri@users.noreply.github.com>2026-01-29 20:53:58 -0600
committerjaerri <62021987+jaerri@users.noreply.github.com>2026-01-29 20:53:58 -0600
commit9c9d5e43da56cd7a74a696e6d9b4ab328873e40d (patch)
treebbcfca5efd5841f7db676ef6b817a39a8e9b2697 /main.go
init
Diffstat (limited to 'main.go')
-rw-r--r--main.go12
1 files changed, 12 insertions, 0 deletions
diff --git a/main.go b/main.go
new file mode 100644
index 0000000..cf18b45
--- /dev/null
+++ b/main.go
@@ -0,0 +1,12 @@
+package main
+
+import (
+ "net/http"
+)
+
+func main() {
+ http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
+
+ })
+ http
+}