This repository has been archived on 2024-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
DataHoard/src/app.ts

13 lines
250 B
TypeScript
Raw Normal View History

2021-08-21 15:46:30 +03:00
// Import SystemControl
import { SystemControl } from "./models/SystemController";
2021-08-21 15:46:30 +03:00
// Global system control singleton
(global as any).logger = new SystemControl();
2021-08-21 00:56:51 +03:00
/**
* The main function to run the program with
*/
async function main() {
2021-08-21 01:21:16 +03:00
2021-08-21 00:56:51 +03:00
}