basic setup

This commit is contained in:
Valentijn van der Jagt
2026-03-08 20:32:37 +01:00
commit b938be9745
4 changed files with 36 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
.env

7
go.mod Normal file
View File

@@ -0,0 +1,7 @@
module DHLTracker/main
go 1.25.0
require github.com/joho/godotenv v1.5.1
require github.com/mattn/go-sqlite3 v1.14.34 // indirect

4
go.sum Normal file
View File

@@ -0,0 +1,4 @@
github.com/joho/godotenv v1.5.1 h1:7eLL/+HRGLY0ldzfGMeQkb7vMd0as4CfYvUVzLqw0N0=
github.com/joho/godotenv v1.5.1/go.mod h1:f4LDr5Voq0i2e/R5DDNOoa2zzDfwtkZa6DnEwAbqwq4=
github.com/mattn/go-sqlite3 v1.14.34 h1:3NtcvcUnFBPsuRcno8pUtupspG/GM+9nZ88zgJcp6Zk=
github.com/mattn/go-sqlite3 v1.14.34/go.mod h1:Uh1q+B4BYcTPb+yiD3kU8Ct7aC0hY9fxUwlHK0RXw+Y=

24
main.go Normal file
View File

@@ -0,0 +1,24 @@
package main
// https://stackoverflow.com/questions/61080317/go-lang-very-simple-http-post-requests-and-response-endpoint (simple post endpoint)
// https://stackoverflow.com/questions/16466320/is-there-a-way-to-do-repetitive-tasks-at-intervals
import (
"log"
"net/http"
_ "github.com/mattn/go-sqlite3"
)
func checkRequestHeader(req *http.Request, res http.ResponseWriter, method string) bool {
if req.Method == method {
return true
}
res.WriteHeader(http.StatusMethodNotAllowed)
return false
}
func main() {
log.Println("[Main] now serving 0.0.0.0:8090")
http.ListenAndServe(":8090", nil)
}