You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
trezor-wallet/src/services/index.js

16 lines
444 B

import WalletService from './WalletService';
import LogService from './LogService';
import RouterService from './RouterService';
import LocalStorageService from './LocalStorageService';
import CoingeckoService from './CoingeckoService';
import TrezorConnectService from './TrezorConnectService';
export default [
WalletService,
LogService,
RouterService,
LocalStorageService,
TrezorConnectService,
CoingeckoService,
];