This commit is contained in:
IT 老营长 @云轩领航-创始人 2024-11-20 22:49:53 +08:00
parent 310262510b
commit 47e116d0ae
2 changed files with 3 additions and 3 deletions

View File

@ -26,9 +26,7 @@ func (s conference) List(m *ice.Message, arg ...string) {
m.PushAction(s.Join) m.PushAction(s.Join)
m.Display("") m.Display("")
} }
func (s conference) Join(m *ice.Message, arg ...string) { func (s conference) Join(m *ice.Message, arg ...string) { m.ProcessOpen(m.Option("join_url")) }
m.ProcessOpen(m.Option("join_url"))
}
func init() { ice.TeamCtxCmd(conference{}) } func init() { ice.TeamCtxCmd(conference{}) }

View File

@ -5,4 +5,6 @@ import (
_ "shylinux.com/x/mysql-story/src/db/mysql" _ "shylinux.com/x/mysql-story/src/db/mysql"
_ "shylinux.com/x/community/src/renzhengshouquan" _ "shylinux.com/x/community/src/renzhengshouquan"
_ "shylinux.com/x/community/src/renzhengshouquan/external/tencentmeeting"
_ "shylinux.com/x/community/src/renzhengshouquan/external/tencentmeeting/model"
) )