Skip to content

Instantly share code, notes, and snippets.

@amsokol
Created September 9, 2018 04:31
Show Gist options
  • Select an option

  • Save amsokol/7f27b64aeaa4a81541eb9c00f77f3f90 to your computer and use it in GitHub Desktop.

Select an option

Save amsokol/7f27b64aeaa4a81541eb9c00f77f3f90 to your computer and use it in GitHub Desktop.
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