mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-23 10:05:10 +00:00
12 lines
322 B
JavaScript
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 ];
|