package web

import "net/http"

// handleGetRoot handles path /
func handleGetRoot(w http.ResponseWriter, r *http.Request) {
	w.Write([]byte("Hello Kurz"))
}