operation/src/operation/release.go
2024-09-19 20:58:54 +08:00

15 lines
365 B
Go

package operation
import "shylinux.com/x/ice"
type release struct {
Table
fields string `data:"title,content,user_uid"`
create string `name:"create title* content*" role:"leader"`
remove string `name:"remove" role:"leader"`
}
func (s release) List(m *ice.Message, arg ...string) { s.ValueList(m, arg).Display("") }
func init() { ice.TeamCtxCmd(release{}) }