fix logger import

This commit is contained in:
Darius
2026-02-05 00:59:56 +01:00
parent 3dd61ab4e8
commit 6d05233a6e
2 changed files with 2 additions and 2 deletions

2
dist/sse.js vendored
View File

@@ -1,4 +1,4 @@
import { logInfo } from "./logger"; import { logInfo } from "./logger.js";
export class SseService { export class SseService {
clients = new Set(); clients = new Set();
addClient(client) { addClient(client) {

View File

@@ -1,4 +1,4 @@
import { logInfo } from "./logger"; import { logInfo } from "./logger.js";
export type SseClient = { export type SseClient = {
id: number; id: number;