mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-09-05 08:10:14 +00:00
refactor: move import statement to top of file
This commit is contained in:
parent
6a15703b54
commit
2137b8aed4
1 changed files with 1 additions and 3 deletions
|
|
@ -11,6 +11,7 @@ import {
|
|||
releaseQueueLock,
|
||||
getActiveRun,
|
||||
getQueuedRuns,
|
||||
dequeueRun,
|
||||
} from "./queue"
|
||||
|
||||
const POLL_INTERVAL = 5000 // 5 seconds
|
||||
|
|
@ -215,6 +216,3 @@ export async function cancelQueuedRun(runId: number): Promise<boolean> {
|
|||
|
||||
return removed
|
||||
}
|
||||
|
||||
// Import dequeueRun from queue module
|
||||
import { dequeueRun } from "./queue"
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue