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

16 lines
187 B
Go

package driver
import (
"net/http"
"github.com/gin-gonic/gin"
)
func Activate(c *gin.Context) {
c.JSON(http.StatusOK, gin.H{
"Implements": []string{
"VolumeDriver",
},
})
}