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

15 lines
455 B

import WalletService from './WalletService';
6 years ago
import LogService from './LogService';
6 years ago
import RouterService from './RouterService';
6 years ago
import LocalStorageService from './LocalStorageService';
import CoinmarketcapService from './CoinmarketcapService';
6 years ago
import TrezorConnectService from './TrezorConnectService';
export default [
WalletService,
6 years ago
LogService,
6 years ago
RouterService,
6 years ago
LocalStorageService,
6 years ago
TrezorConnectService,
6 years ago
CoinmarketcapService,
6 years ago
];