code: nextjs,frontends,with (2 files)

This commit is contained in:
2025-12-26 04:02:24 +00:00
parent 35e917ff3b
commit 47fbf49171
2 changed files with 4 additions and 4 deletions

View File

@@ -1,8 +1,8 @@
import type { LuaExecutionContext } from '../types'
import type { LuaExecutionResult } from '../types'
import type { SecurityScanResult } from '../../../security-scanner'
import { securityScanner } from '../../../security-scanner'
import { LuaEngine } from '../../LuaEngine'
import type { SecurityScanResult } from '../../../../security/scanner/security-scanner'
import { securityScanner } from '../../../../security/scanner/security-scanner'
import { LuaEngine } from '../../../../engine/core/LuaEngine'
import type { SandboxedLuaEngineState } from './types'
export interface SandboxedLuaResult {

View File

@@ -1,6 +1,6 @@
import * as fengari from 'fengari-web'
import type { SandboxedLuaEngineState } from './types'
import { normalizeAllowedGlobals } from './normalize-allowed-globals'
import { normalizeAllowedGlobals } from '../../globals/normalize-allowed-globals'
const lua = fengari.lua