airobot/busi/sociaty.go
2022-12-12 14:09:21 +08:00

23 lines
308 B
Go

package busi
import "legu.airobot/lib"
var _ lib.IScene = (*SociatyScene)(nil)
type SociatyScene struct {
lib.Action
}
func (s *SociatyScene) Info() lib.SceneInfo {
return lib.SceneInfo{
Name: "公会申请",
Desc: "bbb",
}
}
func (s *SociatyScene) Run(robot lib.IRobot) error {
return nil
}