/* SPDX-License-Identifier: Apache-2.0 */ package main import ( "log" "github.com/hyperledger/fabric-contract-api-go/v2/contractapi" "github.com/hyperledger/fabric-samples/token-utxo/chaincode-go/chaincode" ) func main() { tokenChaincode, err := contractapi.NewChaincode(&chaincode.SmartContract{}) if err != nil { log.Panicf("Error creating token-utxo chaincode: %v", err) } if err := tokenChaincode.Start(); err != nil { log.Panicf("Error starting token-utxo chaincode: %v", err) } }