to save up a progress

This commit is contained in:
2026-09-19 23:21:09 +03:00
parent 78cdfa3beb
commit e51ffde305
16 changed files with 267 additions and 13 deletions
+16
View File
@@ -0,0 +1,16 @@
package main
import (
"log"
"net/http"
)
func main() {
addr := ":8080"
http.HandleFunc("/",
func(w http.ResponseWriter, req *http.Request) {
log.Println(req.URL.Query())
})
log.Println("listening on", addr)
log.Fatal(http.ListenAndServe(addr, nil))
}