From abb999f2a550d57576b9d8796fef9193ce067e9a Mon Sep 17 00:00:00 2001 From: Matthew R Date: Fri, 18 Dec 2020 18:38:14 -0500 Subject: [PATCH] fixes --- src/cscli/main.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/cscli/main.ts b/src/cscli/main.ts index 7e947a4..510f1e3 100644 --- a/src/cscli/main.ts +++ b/src/cscli/main.ts @@ -11,6 +11,10 @@ import * as handlerFiles from './handlers'; export class TCPHandler { public endpoint: string; + constructor(endpoint?: string) { + this.endpoint = endpoint; + } + public handle(ctx: Context): Promise { return Promise.resolve(); } }