Files
website/backend/api.go
T
terbshaeusser 7c1e2fb228 initialize backend project
Signed-off-by: Tobias Erbshäußer <tobias@tesoft.dev>
2026-05-24 09:31:18 +02:00

16 lines
216 B
Go

package main
import "net/http"
type ApiHandler struct {
}
func NewApiHandler() *ApiHandler {
// TODO
return &ApiHandler{}
}
func (api *ApiHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
// TODO
}