1
0
Fork 0
refactor/models
Matthew 2020-12-18 18:38:14 -05:00
parent 7a79920638
commit abb999f2a5
No known key found for this signature in database
GPG Key ID: 210AF32ADE3B5C4B
1 changed files with 4 additions and 0 deletions

View File

@ -11,6 +11,10 @@ import * as handlerFiles from './handlers';
export class TCPHandler { export class TCPHandler {
public endpoint: string; public endpoint: string;
constructor(endpoint?: string) {
this.endpoint = endpoint;
}
public handle(ctx: Context): Promise<any> { return Promise.resolve(); } public handle(ctx: Context): Promise<any> { return Promise.resolve(); }
} }