fabric-samples/chaincode/fabcar/javascript/index.js
Arnaud J Le Hors 2e3683c419
Add missing Copyright in some files (#163)
Signed-off-by: Arnaud J Le Hors <lehors@us.ibm.com>
2020-05-19 15:50:48 +01:00

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 ];