MangoRecipe/Source/classes/Main.ts

12 lines
299 B
TypeScript
Raw Normal View History

2022-10-19 12:21:58 +02:00
import path from "path";
import { startWebserver } from "../Webserver/index";
import config from "../../config.json";
export class MangoRecipe {
config: typeof config;
// Starts webservers at first boot
constructor() {
this.config = config;
startWebserver(this);
}
}