11 lines
230 B
Go
11 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)
|
|
},
|
|
})
|
|
}
|