mirror of
https://github.com/LerianStudio/ring
synced 2026-05-05 06:28:37 +00:00
21 lines
525 B
TypeScript
21 lines
525 B
TypeScript
|
|
/**
|
||
|
|
* Ring Tools
|
||
|
|
*
|
||
|
|
* Custom tools registered by Ring plugin.
|
||
|
|
* Currently a placeholder - orchestrator tools have been removed.
|
||
|
|
*/
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Create Ring tools (currently returns empty object).
|
||
|
|
* Orchestrator and background task tools have been removed for simplification.
|
||
|
|
*/
|
||
|
|
export function createRingTools(_directory: string, _options: Record<string, unknown> = {}) {
|
||
|
|
return {}
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Legacy export for backwards compatibility.
|
||
|
|
* @deprecated Use createRingTools(directory) instead.
|
||
|
|
*/
|
||
|
|
export const ringTools = {}
|