Created
September 9, 2018 04:31
-
-
Save amsokol/7f27b64aeaa4a81541eb9c00f77f3f90 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| import ( | |
| "fmt" | |
| "os" | |
| "github.com/amsokol/go-grpc-http-rest-microservice-tutorial/pkg/cmd" | |
| ) | |
| func main() { | |
| if err := cmd.RunServer(); err != nil { | |
| fmt.Fprintf(os.Stderr, "%v\n", err) | |
| os.Exit(1) | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment