1
0
mirror of https://shylinux.com/x/icebergs synced 2025-06-26 18:37:29 +08:00
This commit is contained in:
IT 老营长 @云轩领航-创始人 2023-12-02 17:04:45 +08:00
parent ec7f5eba8e
commit d745552827

View File

@ -15,8 +15,12 @@ func init() {
case web.CHAT_PORTAL: case web.CHAT_PORTAL:
web.RenderMain(m) web.RenderMain(m)
default: default:
if m.IsCliUA() {
m.Cmdy(arg, m.Optionv(ice.ARG)).RenderResult()
} else {
web.RenderCmd(m, cmd, kit.Slice(arg, 1)) web.RenderCmd(m, cmd, kit.Slice(arg, 1))
} }
}
}}, }},
}) })
} }