mirror of
https://github.com/kubevela/kubevela.git
synced 2026-05-03 07:57:13 +00:00
20 lines
262 B
Go
20 lines
262 B
Go
package handler
|
|
|
|
import "github.com/gin-gonic/gin"
|
|
|
|
// Scope related handlers
|
|
func CreateScope(c *gin.Context) {
|
|
}
|
|
|
|
func UpdateScope(c *gin.Context) {
|
|
}
|
|
|
|
func GetScope(c *gin.Context) {
|
|
}
|
|
|
|
func ListScope(c *gin.Context) {
|
|
}
|
|
|
|
func DeleteScope(c *gin.Context) {
|
|
}
|