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