aboutsummaryrefslogtreecommitdiff
path: root/handle_index.go
diff options
context:
space:
mode:
authorRunxi Yu <me@runxiyu.org>2025-02-05 02:35:12 +0800
committerRunxi Yu <me@runxiyu.org>2025-02-05 02:35:12 +0800
commit342e92162ccf0ec4b8a421942bd8035e7edcfe04 (patch)
tree6aad0f49ed8505c69eba53668b3c9f755d5295ed /handle_index.go
parentgo.mod (diff)
downloadforge-342e92162ccf0ec4b8a421942bd8035e7edcfe04.tar.gz
forge-342e92162ccf0ec4b8a421942bd8035e7edcfe04.tar.zst
forge-342e92162ccf0ec4b8a421942bd8035e7edcfe04.zip
*: Basic web server
Diffstat (limited to 'handle_index.go')
-rw-r--r--handle_index.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/handle_index.go b/handle_index.go
new file mode 100644
index 0000000..b9a8a0c
--- /dev/null
+++ b/handle_index.go
@@ -0,0 +1,8 @@
+package main
+
+import (
+ "net/http"
+)
+
+func handle_index(w http.ResponseWriter, r *http.Request) {
+}