mirror of
https://github.com/trezor/trezor-wallet
synced 2024-11-15 12:59:09 +00:00
16 lines
444 B
JavaScript
16 lines
444 B
JavaScript
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,
|
|
];
|