mirror of
https://github.com/kubevela/kubevela.git
synced 2026-04-21 18:17:51 +00:00
24 lines
458 B
Go
24 lines
458 B
Go
package server
|
|
|
|
import "github.com/gin-gonic/gin"
|
|
|
|
// CreateScope creates a scope
|
|
func (s *APIServer) CreateScope(c *gin.Context) {
|
|
}
|
|
|
|
// UpdateScope updates a scope
|
|
func (s *APIServer) UpdateScope(c *gin.Context) {
|
|
}
|
|
|
|
// GetScope gets a scope
|
|
func (s *APIServer) GetScope(c *gin.Context) {
|
|
}
|
|
|
|
// ListScope lists all scopes
|
|
func (s *APIServer) ListScope(c *gin.Context) {
|
|
}
|
|
|
|
// DeleteScope deletes a scope
|
|
func (s *APIServer) DeleteScope(c *gin.Context) {
|
|
}
|