chore(backend): Export Logger class

This commit is contained in:
Tibo De Peuter 2025-03-02 15:20:57 +01:00
parent c2e3886f3f
commit c37d4d8e04
Signed by: tdpeuter
GPG key ID: 38297DE43F75FFE2
9 changed files with 21 additions and 21 deletions

View file

@ -1,11 +1,10 @@
import fs from 'fs';
import path from 'path';
import yaml from 'js-yaml';
import { Logger } from 'winston';
import { Request, Response } from 'express';
import { themes } from '../data/themes.js';
import { FALLBACK_LANG } from '../config.js';
import { getLogger } from '../logging/initalize.js';
import { getLogger, Logger } from '../logging/initalize.js';
const logger: Logger = getLogger();