mirror of
https://github.com/ajayyy/SponsorBlockServer.git
synced 2025-12-06 03:26:59 +03:00
10 lines
268 B
TypeScript
10 lines
268 B
TypeScript
import {config} from "./src/config";
|
|
import {initDb} from './src/databases/databases';
|
|
import {createServer} from "./src/app";
|
|
import {Logger} from "./src/utils/logger";
|
|
|
|
initDb();
|
|
createServer(() => {
|
|
Logger.info("Server started on port " + config.port + ".");
|
|
});
|