This commit is contained in:
a.pivkin 2025-12-15 20:30:18 +03:00
commit b762e10acb
3 changed files with 0 additions and 23 deletions

View File

@ -1,3 +0,0 @@
module main.go
go 1.25.4

Binary file not shown.

View File

@ -1,20 +0,0 @@
package main
import (
"log"
"net/http"
)
func lol(w http.ResponseWriter, r *http.Request) {
w.Write([]byte("azazaza"))
}
func main() {
http.HandleFunc("/",lol)
s := http.Server{
Addr: ":9000",
}
log.Fatal(s.ListenAndServe())
}