1
0
mirror of https://github.com/go-micro/go-micro.git synced 2025-06-30 22:33:49 +02:00

Rename gomu to micro (#2325)

* Rename Gomu to Micro

* docs: Remove license reference in CLI's README
This commit is contained in:
Niek den Breeje
2021-10-27 17:31:29 +02:00
committed by GitHub
parent efcda9a48c
commit a3202b00ee
34 changed files with 81 additions and 88 deletions

12
cmd/micro/main.go Normal file
View File

@ -0,0 +1,12 @@
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()
}