19 lines
No EOL
413 B
TypeScript
19 lines
No EOL
413 B
TypeScript
import { readFileSync } from "fs";
|
|
|
|
const config = JSON.parse(readFileSync("./config.json").toString());
|
|
|
|
export default class Config {
|
|
public constructor() { throw new Error("Static Class"); }
|
|
|
|
public static port:number = config.port;
|
|
|
|
public static database:ConfigDatabase = config.database;
|
|
}
|
|
|
|
interface ConfigDatabase {
|
|
address: string,
|
|
port: number,
|
|
username: string,
|
|
password: string,
|
|
name: string
|
|
} |