fixing import errors from previous agent runs

This commit is contained in:
Rob Colbert 2026-05-01 15:45:43 -04:00
parent bc4959c0da
commit e2dcaf25a0
3 changed files with 5 additions and 5 deletions

View File

@ -6,7 +6,7 @@ import {
GadgetSocket,
SocketSession,
SocketSessionType,
} from "./socket-session";
} from "./socket-session.js";
import {
IChatSession,
IDroneRegistration,

View File

@ -12,9 +12,9 @@ import {
GadgetSocket,
SocketSession,
SocketSessionType,
} from "./socket-session";
import SocketService from "../services/socket";
import { ChatTurn } from "../models/chat-turn";
} from "./socket-session.js";
import { SocketService } from "../services/index.js";
import { ChatTurn } from "../models/chat-turn.js";
export class DroneSession extends SocketSession {
protected type: SocketSessionType = SocketSessionType.Drone;

View File

@ -9,7 +9,7 @@ import {
ServerToClientEvents,
SocketData,
} from "@gadget/api";
import { DtpLog } from "./log";
import { DtpLog } from "./log.js";
export enum SocketSessionType {
Code = "code",