github.com/s7techlab/cckit@v0.10.5/generators/deps.go (about)

     1  //go:build tools
     2  // +build tools
     3  
     4  package generators
     5  
     6  import (
     7  	// chaincode gateway
     8  	_ "github.com/s7techlab/cckit/gateway/protoc-gen-cc-gateway"
     9  	// proto/grpc
    10  	_ "github.com/golang/protobuf/protoc-gen-go"
    11  	// json gateway
    12  	_ "github.com/grpc-ecosystem/grpc-gateway/protoc-gen-grpc-gateway"
    13  	// docs
    14  	_ "github.com/grpc-ecosystem/grpc-gateway/protoc-gen-swagger"
    15  	// validation schema
    16  	_ "github.com/mwitkow/go-proto-validators/protoc-gen-govalidators"
    17  	// protoc docs
    18  	_ "github.com/pseudomuto/protoc-gen-doc/cmd/protoc-gen-doc"
    19  )