export interface Settings {
    port: string | number;
    host?: string;
    ca?: string;
    cert?: string;
    key?: string;
}
