32 lines
663 B
Go
32 lines
663 B
Go
/*
|
|
Copyright SecureKey Technologies Inc. All Rights Reserved.
|
|
|
|
SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
package main
|
|
|
|
import (
|
|
"github.com/hyperledger/fabric-chaincode-go/shim"
|
|
pb "github.com/hyperledger/fabric-protos-go/peer"
|
|
)
|
|
|
|
// New returns an implementation of the chaincode interface
|
|
func New() shim.Chaincode {
|
|
return &scc{}
|
|
}
|
|
|
|
type scc struct{}
|
|
|
|
// Init implements the chaincode shim interface
|
|
func (s *scc) Init(stub shim.ChaincodeStubInterface) pb.Response {
|
|
return shim.Success(nil)
|
|
}
|
|
|
|
// Invoke implements the chaincode shim interface
|
|
func (s *scc) Invoke(stub shim.ChaincodeStubInterface) pb.Response {
|
|
return shim.Success(nil)
|
|
}
|
|
|
|
func main() {}
|