mirror of
https://shylinux.com/x/ContextOS
synced 2025-04-27 17:48:27 +08:00
22 lines
250 B
Go
22 lines
250 B
Go
package main
|
|
|
|
import (
|
|
"shylinux.com/x/ice"
|
|
)
|
|
|
|
func main() {
|
|
ice.App("/admin", "管理", `
|
|
libra
|
|
dev 开发
|
|
cli.qrcode
|
|
cli.runtime
|
|
`)
|
|
ice.App("/vip", "会员", `
|
|
libra
|
|
dev 开发
|
|
cli.runtime
|
|
cli.qrcode
|
|
`)
|
|
ice.RunServe("port", "9090")
|
|
}
|