File tree Expand file tree Collapse file tree 1 file changed +4
-5
lines changed
Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -6,10 +6,9 @@ import { hideBin } from 'yargs/helpers';
66import * as fs from 'fs' ;
77import { getConfigFile , setConfigFile , validate } from './src/config/file' ;
88import { initUserConfig } from './src/config' ;
9- import * as Proxy from './src/proxy' ;
10- import * as Service from './src/service' ;
9+ import { Proxy } from './src/proxy' ;
10+ import { Service } from './src/service' ;
1111
12- console . log ( 'handling commandline args' ) ;
1312const argv = yargs ( hideBin ( process . argv ) )
1413 . usage ( 'Usage: $0 [options]' )
1514 . options ( {
@@ -55,8 +54,8 @@ validate();
5554console . log ( 'Setting up the proxy and Service' ) ;
5655
5756// The deferred imports should cause these to be loaded on first access
58- const proxy = new Proxy . Proxy ( ) ;
57+ const proxy = new Proxy ( ) ;
5958proxy . start ( ) ;
60- Service . Service . start ( proxy ) ;
59+ Service . start ( proxy ) ;
6160
6261export { proxy , Service } ;
You can’t perform that action at this time.
0 commit comments