mirror of
https://github.com/planetmint/planetmint-go.git
synced 2025-03-30 15:08:28 +00:00

``` $ ignite version Ignite CLI version: v0.27.1 Cosmos SDK version: v0.47.3 $ ignite scaffold chain planetmint-go --address-prefix plmt --no-module ``` Signed-off-by: Julian Strobl <jmastr@mailbox.org>
12 lines
342 B
Go
12 lines
342 B
Go
//go:build tools
|
|
|
|
package tools
|
|
|
|
import (
|
|
_ "github.com/cosmos/gogoproto/protoc-gen-gocosmos"
|
|
_ "github.com/golang/protobuf/protoc-gen-go"
|
|
_ "github.com/grpc-ecosystem/grpc-gateway/protoc-gen-grpc-gateway"
|
|
_ "github.com/grpc-ecosystem/grpc-gateway/protoc-gen-swagger"
|
|
_ "github.com/grpc-ecosystem/grpc-gateway/v2/protoc-gen-openapiv2"
|
|
)
|