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

14 lines
222 B
Go

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