Wondertan / go-protobuf-import-example

Importing protobuf definitions with Go modules

Home Page:https://stepan.wtf/importing-protobuf-with-go-modules/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

go-protobuf-import-example

Example of how to import versioned protobuf definitions from Go packages when using Go modules.

This code is to accompany my blog post Importing protobuf definitions with Go modules, please read for more details.

TL;DR

Symlink directories of individual modules (obtained from go list) under one folder, or populate vendor directory by running go mod vendor. Paths within that directory then match relative import paths used in protobuf import statement and you can run protoc with -I ./vendor flag.

Requirements

Usage

Run make for help:

$ make
help                           Print list of tasks
build                          Build go project
proto-link                     Generate go protobuf files using symlinked modules
proto-vendor                   Generate go protobuf files using go mode vendor
run                            Runs the demo server

About

Importing protobuf definitions with Go modules

https://stepan.wtf/importing-protobuf-with-go-modules/


Languages

Language:Go 46.6%Language:Makefile 31.7%Language:Shell 21.7%