1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
// Copyright (c) 2026 Bountyy Oy. All rights reserved. // This software is proprietary and confidential. pub mod custom_executor; /** * Nuclei Module * Custom template management and execution * * © 2026 Bountyy Oy */ pub mod template_validator; pub use custom_executor::{ BatchExecutionResult, CustomTemplateExecutor, ExecutionConfig, ExecutionRequest, ExecutionResult, }; pub use template_validator::{TemplateValidator, ValidationResult};