working to analyze timing issues

This commit is contained in:
2025-07-25 15:52:16 -04:00
parent 70c2a1b9d3
commit 4c6e23bff8
31 changed files with 3197 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
#!/usr/bin/env python3
"""
Modular Ethernet Traffic Analyzer - Entry point that uses the new modular structure
This script provides the same interface as the original ethernet_analyzer.py
but uses the new modular architecture for better maintainability.
"""
import sys
import os
# Add the analyzer package to the path
sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))
from analyzer.main import main
if __name__ == "__main__":
main()