Go to file
dependabot[bot] 67e5e64aa6
Bump go.unistack.org/micro-proto/v3 from 3.1.0 to 3.1.1
Bumps [go.unistack.org/micro-proto/v3](https://github.com/unistack-org/micro-proto) from 3.1.0 to 3.1.1.
- [Release notes](https://github.com/unistack-org/micro-proto/releases)
- [Commits](https://github.com/unistack-org/micro-proto/compare/v3.1.0...v3.1.1)

---
updated-dependencies:
- dependency-name: go.unistack.org/micro-proto/v3
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2021-12-30 15:20:27 +00:00
.github Bump actions/github-script from 4 to 5 2021-09-27 15:26:58 +00:00
example cleanup deps 2021-10-23 23:30:16 +03:00
.gitignore some fixes 2021-10-23 23:21:10 +03:00
ast.go update to never micro-proto, generate openapi 2021-10-23 02:55:43 +03:00
chi.go use plain struct for endpoints 2021-06-23 00:23:38 +03:00
fiealaligment.go add fieldaligment 2021-12-26 01:09:11 +03:00
go.mod Bump go.unistack.org/micro-proto/v3 from 3.1.0 to 3.1.1 2021-12-30 15:20:27 +00:00
go.sum Bump go.unistack.org/micro-proto/v3 from 3.1.0 to 3.1.1 2021-12-30 15:20:27 +00:00
gorilla.go use plain struct for endpoints 2021-06-23 00:23:38 +03:00
http.go add micro.codec.Frame special type handling 2021-08-31 20:39:56 +03:00
LICENSE change license 2021-02-23 14:50:01 +03:00
main.go add fieldaligment 2021-12-26 01:09:11 +03:00
micro.go use plain struct for endpoints 2021-06-23 00:23:38 +03:00
openapiv3.go avoid panic on empty swagger info element 2021-11-25 23:10:54 +03:00
README.md add support for cookie and header variables 2021-10-24 00:52:39 +03:00
rpc.go use plain struct for endpoints 2021-06-23 00:23:38 +03:00
util.go update 2021-10-27 15:29:48 +03:00
variables.go add support for cookie and header variables 2021-10-24 00:52:39 +03:00

protoc-gen-go-micro

protobuf plugin to generate helper code for micro framework

A generic code/script/data generator based on Protobuf.


This project is a generator plugin for the Google Protocol Buffers compiler (protoc).

Usage

$> protoc --go_micro_out=debug=true,components="micro|http":. input.proto
Option Default Value Accepted Values Description
tag_path . any local path path contains generated protobuf code that needs to be tagged
debug               false       true or false if true, protoc will generate a more verbose output
components micro micro rpc http chi gorilla client server some values can't coexists like gorilla/chi or rpc/http, values must be concatinated with pipe symbol

Install

  • Install the go compiler and tools from https://golang.org/doc/install
  • Install protoc-gen-go: go install google.golang.org/protobuf/cmd/protoc-gen-go
  • Install protoc-gen-go-micro: go install go.unistack.org/protoc-gen-go-micro/v3