mirror of
https://github.com/prowler-cloud/prowler.git
synced 2026-03-22 03:08:23 +00:00
15 lines
436 B
TypeScript
15 lines
436 B
TypeScript
import { customAttackPathQuerySkill } from "./definitions/attack-path-custom-query";
|
|
import { registerSkill } from "./registry";
|
|
|
|
// Explicit registration — tree-shake-proof
|
|
registerSkill(customAttackPathQuerySkill);
|
|
|
|
// Re-export registry functions and types
|
|
export {
|
|
getAllSkillMetadata,
|
|
getRegisteredSkillIds,
|
|
getSkillById,
|
|
registerSkill,
|
|
} from "./registry";
|
|
export type { SkillDefinition, SkillMetadata } from "./types";
|