6 lines
86 B
TypeScript
6 lines
86 B
TypeScript
export interface Config {
|
|
redis: string;
|
|
db_main: string;
|
|
port: number;
|
|
}
|