gf/geg/os/console.go
2018-04-17 14:20:02 +08:00

22 lines
290 B
Go

package main
import (
"fmt"
"gitee.com/johng/gf/g/os/gcmd"
)
func doEcho() {
fmt.Println("do echo")
}
func main() {
fmt.Println(gcmd.Value.GetAll())
fmt.Println(gcmd.Value.Get(1))
gcmd.BindHandle("echo", doEcho)
gcmd.RunHandle("echo")
gcmd.AutoRun()
}