mirror of
https://github.com/nicotsx/ironmount.git
synced 2025-12-10 12:10:51 +01:00
12 lines
230 B
Go
12 lines
230 B
Go
package driver
|
|
|
|
import "github.com/gin-gonic/gin"
|
|
|
|
func Capabilities(c *gin.Context) {
|
|
c.JSON(200, gin.H{
|
|
"Capabilities": map[string]bool{
|
|
"Scope": true, // Indicates that the driver supports scope (local/global)
|
|
},
|
|
})
|
|
}
|