fabric-samples/chaincode/fabcar/javascript/index.js
Arnaud J Le Hors bb36d58b71 Add missing Copyright in some files
Signed-off-by: Arnaud J Le Hors <lehors@us.ibm.com>
2020-04-20 20:28:44 +02: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 ];