1
0
mirror of https://github.com/go-micro/go-micro.git synced 2025-05-19 21:23:04 +02:00
go-micro/cmd/gomu/main.go

13 lines
164 B
Go
Raw Normal View History

2021-08-30 16:48:57 +02:00
package main
import (
2021-10-14 08:09:21 +01:00
"github.com/asim/go-micro/cmd/gomu/cmd"
2021-08-30 16:48:57 +02:00
// register commands
2021-10-14 08:09:21 +01:00
_ "github.com/asim/go-micro/cmd/gomu/cmd/cli"
2021-08-30 16:48:57 +02:00
)
func main() {
cmd.Run()
}