1
0
mirror of https://github.com/go-micro/go-micro.git synced 2025-03-17 20:28:06 +02:00
Niek den Breeje 9a77c06b44
Move from micro/cli/v2 to urfave/cli/v2 (#2224)
* Use urfave/cli/v2 instead of micro/cli/v2

Wherever possible we may want to eliminate the use of github.com/micro
imports.

* Fix broken cli test
2021-08-31 09:05:08 +01:00
..
2021-01-20 21:28:48 +00:00
2020-12-26 15:17:20 +00:00

Service

This is an example of creating a micro service.

Contents

  • main.go - is the main definition of the service, handler and client
  • proto - contains the protobuf definition of the API

Run the example

Run the service

go run main.go

Run the client

go run main.go --run_client

And that's all there is to it.