import { CallbackStrategyWithEmpty, ResponseBase } from "../../../core/controllers/http_controller"; import { Result } from "../../../core/helpers/result"; import { SpawnProcessUseCase } from "../../../core/usecases/exec_process_usecase"; import { GetCommandScenario } from "./get_command_scenario"; import { ProcessWatcher } from "../service/process_watcher"; import { App } from "../../../core/controllers/app"; export class GetSimulationStateScenario extends CallbackStrategyWithEmpty { call = async (): ResponseBase => Result.ok(""); }