add dummy routes and handlers and update makefile

This commit is contained in:
2025-10-23 00:33:19 +02:00
parent 7c3ec901cd
commit 14e5752d35
5 changed files with 62 additions and 8 deletions
@@ -0,0 +1,20 @@
package meteo
import (
"fmt"
"net/http"
)
type Handler struct{}
func NewHandler() *Handler {
return &Handler{}
}
func (h *Handler) IngestCSV(w http.ResponseWriter, r *http.Request) {
fmt.Fprintf(w, "hello from csv")
}
func (h *Handler) IngestExcel(w http.ResponseWriter, r *http.Request) {
fmt.Fprintf(w, "hello from excel")
}