feat(server): add http server and req handler

This commit is contained in:
2025-03-03 19:35:37 -03:00
parent fc1e203c48
commit 950dbee8a6
2 changed files with 49 additions and 0 deletions

11
main.go Normal file
View File

@@ -0,0 +1,11 @@
package main
import (
"net/http"
)
func main() {
http.HandleFunc("/", RequestHandler)
http.ListenAndServe(":3333", nil)
}