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(); } }