mirror of
https://github.com/go-micro/go-micro.git
synced 2025-04-17 11:06:19 +02:00
13 lines
166 B
Go
13 lines
166 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"github.com/asim/go-micro/cmd/micro/cmd"
|
||
|
|
||
|
// register commands
|
||
|
_ "github.com/asim/go-micro/cmd/micro/cmd/cli"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
cmd.Run()
|
||
|
}
|