Files
kubevela/pkg/server/handler/workloadHandler.go
2020-08-10 22:53:44 -07:00

20 lines
280 B
Go

package handler
import "github.com/gin-gonic/gin"
// Workload related handlers
func CreateWorkload(c *gin.Context) {
}
func UpdateWorkload(c *gin.Context) {
}
func GetWorkload(c *gin.Context) {
}
func ListWorkload(c *gin.Context) {
}
func DeleteWorkload(c *gin.Context) {
}