mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 15:35:09 +00:00
12 lines
221 B
JavaScript
12 lines
221 B
JavaScript
/*
|
|
* Copyright IBM Corp. All Rights Reserved.
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
const FabCar = require('./lib/fabcar');
|
|
|
|
module.exports.FabCar = FabCar;
|
|
module.exports.contracts = [ FabCar ];
|