7c1e2fb228
Signed-off-by: Tobias Erbshäußer <tobias@tesoft.dev>
16 lines
216 B
Go
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
|
|
}
|