mirror of
https://shylinux.com/x/community
synced 2025-04-27 10:18:28 +08:00
15 lines
255 B
Go
15 lines
255 B
Go
package yuehaoxitong
|
|
|
|
import "shylinux.com/x/ice"
|
|
|
|
type queueUser struct {
|
|
Tables
|
|
userQueue userQueue
|
|
}
|
|
|
|
func (s queueUser) List(m *ice.Message, arg ...string) {
|
|
m.Cmdy(s.userQueue, s.userQueue.User, arg)
|
|
}
|
|
|
|
func init() { ice.TeamCtxCmd(queueUser{}) }
|