| 131 | // ═══════════════════════════════════════════════════════════════════════════ |
| 132 | |
| 133 | pub struct ParallelNucleiExecutor { |
| 134 | config: ParallelConfig, |
| 135 | semaphore: Arc<Semaphore>, |
| 136 | completed: Arc<AtomicUsize>, |
| 137 | total: Arc<AtomicUsize>, |
| 138 | } |
| 139 | |
| 140 | impl ParallelNucleiExecutor { |
| 141 | pub fn new(config: ParallelConfig) -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected