forked from x/icebergs
15 lines
204 B
Go
15 lines
204 B
Go
package node
|
|
|
|
import "shylinux.com/x/ice"
|
|
|
|
type vue struct {
|
|
ice.Code
|
|
list string `name:"list auto" help:"服务框架"`
|
|
}
|
|
|
|
func (s vue) List(m *ice.Message) {
|
|
|
|
}
|
|
|
|
func init() { ice.CodeCtxCmd(vue{}) }
|