Skip to content

Commit

Permalink
missed these imports
Browse files Browse the repository at this point in the history
  • Loading branch information
daniellacosse committed Mar 7, 2024
1 parent 35c8007 commit bbd510b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/electron/go_vpn_tunnel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import {powerMonitor} from 'electron';
import {platform} from 'os';

import {pathToEmbeddedBinary} from '../infrastructure/electron/app_paths';
import {ShadowsocksSessionConfig} from '../www/model/shadowsocks_session_config';
import {ShadowsocksSessionConfig} from '../www/app/tunnel';
import {TunnelStatus} from '../www/app/tunnel';
import {ErrorCode, fromErrorCode, UnexpectedPluginError} from '../www/model/errors';

Expand Down
2 changes: 1 addition & 1 deletion src/electron/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import autoLaunch = require('auto-launch'); // tslint:disable-line

import * as errors from '../www/model/errors';

import {ShadowsocksSessionConfig} from '../www/model/shadowsocks_session_config';
import {ShadowsocksSessionConfig} from '../www/app/tunnel';
import {TunnelStatus} from '../www/app/tunnel';
import {GoVpnTunnel} from './go_vpn_tunnel';
import {installRoutingServices, RoutingDaemon} from './routing_service';
Expand Down
2 changes: 1 addition & 1 deletion src/electron/tunnel_store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
import * as fs from 'fs';
import * as path from 'path';

import {ShadowsocksSessionConfig} from '../www/model/shadowsocks_session_config';
import {ShadowsocksSessionConfig} from '../www/app/tunnel';

// Format to store a tunnel configuration.
export interface SerializableTunnel {
Expand Down

0 comments on commit bbd510b

Please sign in to comment.