Files
ironmount/internal/driver/unmount.go
2025-08-10 10:09:07 +02:00

11 lines
175 B
Go

package driver
import (
"encoding/json"
"net/http"
)
func Unmount(w http.ResponseWriter, r *http.Request) {
_ = json.NewEncoder(w).Encode(map[string]string{"Err": ""})
}