github.com/s7techlab/cckit@v0.10.5/gateway/protoc-gen-cc-gateway/README.md (about)

     1  # Hyperledger Fabric chaincode kit (CCKit)
     2  
     3  ## Chaincode gateway
     4   
     5  With gRPC we can define chaincode interface once in a .proto file and  API / SDK  will be automatically created for this chaincode.
     6  We also get all the advantages of working with protocol buffers, including efficient serialization, a simple IDL, 
     7  and easy interface updating.
     8  
     9  Chaincode-as-service gateway generator allows to generate from gRPC service definition:
    10   
    11  * Chaincode handlers interface 
    12  * Chaincode gateway - service, can act as chaincode SDK or can be exposed as gRPC or REST service
    13  
    14  ### Install the generator
    15  
    16  `GO111MODULE=on go install github.com/s7techlab/cckit/gateway/protoc-gen-cc-gateway`
    17  
    18  
    19  
    20