mirror of
https://github.com/kubevela/kubevela.git
synced 2026-03-06 11:41:41 +00:00
20 lines
280 B
Go
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) {
|
|
}
|