website refactor

This commit is contained in:
2026-01-17 16:23:51 +01:00
parent 72a626ce71
commit 846667c3d1
27 changed files with 140 additions and 154 deletions

View File

@@ -1,7 +1,9 @@
import { injectable } from 'inversify';
import { Logger } from '../../interfaces/Logger';
type LogLevel = 'debug' | 'info' | 'warn' | 'error';
@injectable()
export class ConsoleLogger implements Logger {
private readonly COLORS: Record<LogLevel, string> = {
debug: '#888888',