summaryrefslogtreecommitdiff
path: root/cli/js/ops/tls.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/js/ops/tls.ts')
-rw-r--r--cli/js/ops/tls.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/js/ops/tls.ts b/cli/js/ops/tls.ts
index 3e49c1c93..b52ad65bb 100644
--- a/cli/js/ops/tls.ts
+++ b/cli/js/ops/tls.ts
@@ -26,7 +26,7 @@ interface ConnectTLSResponse {
export async function connectTLS(
args: ConnectTLSRequest
): Promise<ConnectTLSResponse> {
- return await sendAsync("op_connect_tls", args);
+ return sendAsync("op_connect_tls", args);
}
interface AcceptTLSResponse {
@@ -44,7 +44,7 @@ interface AcceptTLSResponse {
}
export async function acceptTLS(rid: number): Promise<AcceptTLSResponse> {
- return await sendAsync("op_accept_tls", { rid });
+ return sendAsync("op_accept_tls", { rid });
}
export interface ListenTLSRequest {