First skeleton
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
type ServerConfig = {
|
||||
bindName: string;
|
||||
bindPort: number;
|
||||
}
|
||||
|
||||
export abstract class AASInterfaceServer {
|
||||
public abstract readonly name: string;
|
||||
public abstract config: ServerConfig;
|
||||
|
||||
public abstract prepare(): void;
|
||||
public abstract run(): void;
|
||||
}
|
||||
Reference in New Issue
Block a user