mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 06:14:59 +00:00
feat(types): introduce builder and level types for component and user roles feat(workflow): implement workflow engine with execution context and logging style(theme): create modular theme exports for consistent styling chore(tests): add comprehensive tests for workflow execution and Lua nodes
10 lines
234 B
TypeScript
10 lines
234 B
TypeScript
import { getAdapter } from '../dbal-client'
|
|
|
|
/**
|
|
* Delete a Lua script by ID
|
|
*/
|
|
export async function deleteLuaScript(scriptId: string): Promise<void> {
|
|
const adapter = getAdapter()
|
|
await adapter.delete('LuaScript', scriptId)
|
|
}
|