fabric-samples/chaincode/PerformanceLicense/javascript/index.js
2020-05-12 03:39:56 +00:00

12 lines
322 B
JavaScript

/*
* SPDX-License-Identifier: Apache-2.0
*/
'use strict';
const Performance = require('./lib/PerformanceLicense').Performance;
const License = require('./lib/PerformanceLicense').License;
module.exports.Performance = Performance;
module.exports.License = License;
module.exports.contracts = [ Performance, License ];