grpc-js: Resolve eslint node/no-deprecated-api

Remove unused imports
This commit is contained in:
Patrick Remy 2020-04-10 11:15:10 +02:00
parent e9172f043a
commit ac14e1ac54
No known key found for this signature in database
GPG Key ID: FE25C0B14C0500CD
1 changed files with 2 additions and 6 deletions

View File

@ -15,18 +15,14 @@
*
*/
import { URL, parse } from 'url';
import { URL } from 'url';
import { log } from './logging';
import { LogVerbosity } from './constants';
import { parseTarget } from './resolver-dns';
import { Socket } from 'net';
import * as http from 'http';
import * as logging from './logging';
import {
SubchannelAddress,
TcpSubchannelAddress,
isTcpSubchannelAddress,
} from './subchannel';
import { SubchannelAddress, isTcpSubchannelAddress } from './subchannel';
const TRACER_NAME = 'proxy';