Skip to content

Commit

Permalink
fix(cli): rename AdbServerNodeTcpConnector
Browse files Browse the repository at this point in the history
  • Loading branch information
yume-chan committed Oct 18, 2023
1 parent fe5cb5a commit 758cc18
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/cli/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import "source-map-support/register.js";

import { Adb, AdbServerClient } from "@yume-chan/adb";
import { AdbServerNodeTcpConnection } from "@yume-chan/adb-server-node-tcp";
import { AdbServerNodeTcpConnector } from "@yume-chan/adb-server-node-tcp";
import {
ConsumableWritableStream,
WritableStream,
Expand Down Expand Up @@ -33,7 +33,7 @@ program

function createClient() {
const opts: { H: string; P: number } = program.opts();
const connection = new AdbServerNodeTcpConnection({
const connection = new AdbServerNodeTcpConnector({
host: opts.H,
port: opts.P,
});
Expand Down

0 comments on commit 758cc18

Please sign in to comment.