Compare commits

..

No commits in common. "00361743d5c89787c207bd95a88ba22130ae172b" and "7f99677331e26ae6f4143b5c4dbd7f9358e14a30" have entirely different histories.

3 changed files with 3 additions and 36 deletions

2
go.mod
View file

@ -1,5 +1,3 @@
module nickiel.net/recount_server module nickiel.net/recount_server
go 1.21.5 go 1.21.5
require github.com/jmoiron/sqlx v1.3.5 // indirect

5
go.sum
View file

@ -1,5 +0,0 @@
github.com/go-sql-driver/mysql v1.6.0/go.mod h1:DCzpHaOWr8IXmIStZouvnhqoel9Qv2LBy8hT2VhHyBg=
github.com/jmoiron/sqlx v1.3.5 h1:vFFPA71p1o5gAeqtEAwLU4dnX2napprKtHr7PYIcN3g=
github.com/jmoiron/sqlx v1.3.5/go.mod h1:nRVWtLre0KfCLJvgxzCsLVMogSvQ1zNJtpYr2Ccp0mQ=
github.com/lib/pq v1.2.0/go.mod h1:5WUZQaWbwv1U+lTReE5YruASi9Al49XbQIvNi/34Woo=
github.com/mattn/go-sqlite3 v1.14.6/go.mod h1:NyWgC/yNuGj7Q9rpYnZvas74GogHl5/Z4A/KQRfk6bU=

View file

@ -1,33 +1,7 @@
package main package recount_server
import ( import "fmt"
"fmt"
"log"
"net/http"
//"github.com/jmoiron/sqlx"
)
func hello(w http.ResponseWriter, req *http.Request) {
fmt.Fprintf(w, "hello\n")
}
func headers(w http.ResponseWriter, req *http.Request) {
for name, headers := range req.Header {
for _, h := range headers {
fmt.Fprintf(w, "%v: %v\n", name, h)
}
}
}
func main() { func main() {
log.SetPrefix("RecountServer: ") fmt.Println("Hello World")
log.SetFlags(0)
http.HandleFunc("/hello", hello)
http.HandleFunc("/headers", headers)
http.ListenAndServe(":8090", nil)
//fmt.Println("Hello World")
} }