mirror of
https://shylinux.com/x/community
synced 2025-04-26 10:04:05 +08:00
18 lines
408 B
Go
18 lines
408 B
Go
package gonganxitong
|
|
|
|
import "shylinux.com/x/ice"
|
|
|
|
type contract struct {
|
|
Table
|
|
order string `data:"94"`
|
|
fields string `data:"title"`
|
|
create string `name:"create title*" role:"leader"`
|
|
remove string `name:"remove" role:"leader"`
|
|
}
|
|
|
|
func (s contract) List(m *ice.Message, arg ...string) {
|
|
m.Echo("功能正在开发中,敬请等待。")
|
|
}
|
|
|
|
func init() { ice.TeamCtxCmd(contract{Table: newTable()}) }
|