mirror of
https://shylinux.com/x/education
synced 2025-04-25 10:08:05 +08:00
20 lines
359 B
Go
20 lines
359 B
Go
package jiaocaiziliao
|
|
|
|
import (
|
|
"shylinux.com/x/ice"
|
|
|
|
"shylinux.com/x/education/src/jiaocaiziliao/model"
|
|
)
|
|
|
|
type offical struct {
|
|
Tables
|
|
userLibrary userLibrary
|
|
}
|
|
|
|
func (s offical) List(m *ice.Message, arg ...string) {
|
|
m.Cmdy(s.userLibrary, m.Option(model.USER_UID), arg)
|
|
m.ProcessOpen(m.Append(model.LINK))
|
|
}
|
|
|
|
func init() { ice.TeamCtxCmd(offical{}) }
|