export interface IConfig { host: string port: number } export const config: IConfig = { host: '0.0.0.0', port: 8900 }