Files
tide/api/main.go
T
2023-09-15 23:06:38 +02:00

14 lines
196 B
Go

package main
import (
"fmt"
"net/http"
)
func main() {
http.HandleFunc("/", func(resp http.ResponseWriter, req *http.Request) {
fmt.Println("test")
})
http.ListenAndServe(":7890", nil)
}