mirror of
https://github.com/zitadel/zitadel
synced 2024-11-22 18:44:40 +00:00
c2fedbbfc6
* fix: generate admin api * fix: generate admin api * fix: generate admin api * fix: http option * fix: admin api * fix: md files * fix: correct headers * fix: proto definitions * fix: proto api * fix: proto api * fix: proto api * fix: proto api
27 lines
734 B
Go
27 lines
734 B
Go
// +build tools
|
|
|
|
package tools
|
|
|
|
import (
|
|
//proto
|
|
_ "github.com/envoyproxy/protoc-gen-validate"
|
|
//proto custom authoptions
|
|
_ "github.com/go-bindata/go-bindata/v3/go-bindata"
|
|
// gateway grpc to rest
|
|
_ "github.com/grpc-ecosystem/grpc-gateway/v2/protoc-gen-grpc-gateway"
|
|
// openapi v2 descriptions
|
|
_ "github.com/grpc-ecosystem/grpc-gateway/v2/protoc-gen-openapiv2"
|
|
// grpc generator
|
|
_ "google.golang.org/grpc/cmd/protoc-gen-go-grpc"
|
|
//protoc
|
|
_ "google.golang.org/protobuf/cmd/protoc-gen-go"
|
|
//generate static files
|
|
_ "github.com/rakyll/statik"
|
|
//proto
|
|
_ "google.golang.org/grpc/cmd/protoc-gen-go-grpc"
|
|
//proto doc
|
|
_ "github.com/pseudomuto/protoc-gen-doc/cmd/protoc-gen-doc"
|
|
//mock
|
|
_ "github.com/golang/mock/mockgen"
|
|
)
|