mirror of
https://github.com/kubevela/kubevela.git
synced 2026-03-05 19:22:03 +00:00
20 lines
336 B
Go
20 lines
336 B
Go
package server
|
|
|
|
import "github.com/gin-gonic/gin"
|
|
|
|
// Scope related handlers
|
|
func (s *APIServer) CreateScope(c *gin.Context) {
|
|
}
|
|
|
|
func (s *APIServer) UpdateScope(c *gin.Context) {
|
|
}
|
|
|
|
func (s *APIServer) GetScope(c *gin.Context) {
|
|
}
|
|
|
|
func (s *APIServer) ListScope(c *gin.Context) {
|
|
}
|
|
|
|
func (s *APIServer) DeleteScope(c *gin.Context) {
|
|
}
|