feat: dev hot reload setup

This commit is contained in:
Nicolas Meienberger
2025-08-09 17:08:54 +02:00
parent e7463d34ef
commit 065c629ba8
11 changed files with 88 additions and 3 deletions

View File

@@ -2,9 +2,12 @@ package driver
import (
"encoding/json"
"log"
"net/http"
)
func Unmount(w http.ResponseWriter, r *http.Request) {
log.Printf("Received unmount request: %s", r.URL.Path)
_ = json.NewEncoder(w).Encode(map[string]string{"Err": ""})
}