mirror of
https://shylinux.com/x/community
synced 2025-05-11 07:58:10 +08:00
18 lines
379 B
Go
18 lines
379 B
Go
package gonganxitong
|
|
|
|
import (
|
|
"shylinux.com/x/ice"
|
|
|
|
"shylinux.com/x/community/src/gonganxitong/model"
|
|
)
|
|
|
|
type comment struct{ Table }
|
|
|
|
func (s comment) Create(m *ice.Message, arg ...string) {
|
|
s.Insert(m, append(arg, m.OptionSimple(model.MARKET_UID, model.USER_UID)...)...)
|
|
}
|
|
func (s comment) List(m *ice.Message, arg ...string) {
|
|
}
|
|
|
|
func init() { ice.TeamCtxCmd(comment{}) }
|