mirror of
https://github.com/kubevela/kubevela.git
synced 2026-05-06 09:27:16 +00:00
20 lines
262 B
Go
20 lines
262 B
Go
package handler
|
|
|
|
import "github.com/gin-gonic/gin"
|
|
|
|
// Trait related handlers
|
|
func CreateTrait(c *gin.Context) {
|
|
}
|
|
|
|
func UpdateTrait(c *gin.Context) {
|
|
}
|
|
|
|
func GetTrait(c *gin.Context) {
|
|
}
|
|
|
|
func ListTrait(c *gin.Context) {
|
|
}
|
|
|
|
func DeleteTrait(c *gin.Context) {
|
|
}
|