mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-26 11:35:10 +00:00
10 lines
210 B
JavaScript
10 lines
210 B
JavaScript
/*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
const AssetContract = require('./lib/asset-contract');
|
|
|
|
module.exports.AssetContract = AssetContract;
|
|
module.exports.contracts = [ AssetContract ];
|