2017-12-13 11:01:37 +00:00
|
|
|
/* @flow */
|
2018-07-30 10:52:13 +00:00
|
|
|
|
2017-12-13 11:01:37 +00:00
|
|
|
|
2018-05-22 17:42:03 +00:00
|
|
|
import WalletService from './WalletService';
|
2018-05-05 11:52:03 +00:00
|
|
|
import LogService from './LogService';
|
2017-12-13 11:01:37 +00:00
|
|
|
import RouterService from './RouterService';
|
2018-02-20 09:30:36 +00:00
|
|
|
import LocalStorageService from './LocalStorageService';
|
|
|
|
import CoinmarketcapService from './CoinmarketcapService';
|
2017-12-13 11:01:37 +00:00
|
|
|
import TrezorConnectService from './TrezorConnectService';
|
|
|
|
|
|
|
|
export default [
|
2018-05-22 17:42:03 +00:00
|
|
|
WalletService,
|
2018-05-05 11:52:03 +00:00
|
|
|
LogService,
|
2017-12-13 11:01:37 +00:00
|
|
|
RouterService,
|
2018-02-20 09:30:36 +00:00
|
|
|
LocalStorageService,
|
2017-12-13 11:01:37 +00:00
|
|
|
TrezorConnectService,
|
2018-02-20 09:30:36 +00:00
|
|
|
CoinmarketcapService,
|
2017-12-13 11:01:37 +00:00
|
|
|
];
|