sprolosta
Version:
A nodejs app that computes the profit / loss of stock trading for each financial year
15 lines (12 loc) • 381 B
JavaScript
/**
* Copyright (c) 2023 TYO Lab (TYONLINE TECHNOLOGY PTY. LTD.). All rights reserved.
* Licensed under the MIT License. See LICENSE file in the project root for full license information.
*
*/
const CommSec = require('./commsec');
const commsec = new CommSec();
module.exports = {
commsec: commsec,
default: commsec,
fpmarkets: new (require('./fpmarkets'))(),
}