feat: set record router
This commit is contained in:
18
server/src/routes/record.ts
Normal file
18
server/src/routes/record.ts
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
/**
|
||||||
|
* RESTful API endpoints handling remote browser recording sessions.
|
||||||
|
*/
|
||||||
|
import { Router } from 'express';
|
||||||
|
|
||||||
|
import {
|
||||||
|
initializeRemoteBrowserForRecording,
|
||||||
|
destroyRemoteBrowser,
|
||||||
|
getActiveBrowserId,
|
||||||
|
interpretWholeWorkflow,
|
||||||
|
stopRunningInterpretation,
|
||||||
|
getRemoteBrowserCurrentUrl, getRemoteBrowserCurrentTabs,
|
||||||
|
} from '../browser-management/controller'
|
||||||
|
import { chromium } from "playwright";
|
||||||
|
import logger from "../logger";
|
||||||
|
|
||||||
|
export const router = Router();
|
||||||
|
|
||||||
Reference in New Issue
Block a user