import { Type, Static } from '@sinclair/typebox' export type ConfigSchema = Static export const ConfigSchema = Type.Object({ host: Type.String(), hostWorker: Type.String(), hostTHWorker: Type.String(), hostTH: Type.String() })