mirror of
https://github.com/smittix/intercept.git
synced 2026-07-06 08:38:14 -07:00
96172ca593
First-time run of ruff-format via pre-commit hook normalises quote style, trailing commas, and whitespace across 188 Python files. No logic changes. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
12 lines
379 B
Python
12 lines
379 B
Python
"""
|
|
TSCM (Technical Surveillance Countermeasures) Utilities Package
|
|
|
|
Provides baseline recording, threat detection, correlation analysis,
|
|
BLE scanning, and MAC-randomization resistant device identity tools
|
|
for counter-surveillance operations.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
__all__ = ["detector", "baseline", "correlation", "ble_scanner", "device_identity"]
|