Files
M-CTF-2025/neuralink/run_async.py
2025-12-14 14:47:18 +03:00

17 lines
365 B
Python
Executable File

#!/usr/bin/env python3
"""
Runner script for the async security service with automatic flag submission.
"""
import sys
import os
# Add the build/service directory to the path
sys.path.insert(0, os.path.join(os.path.dirname(__file__), "build", "service"))
from security_service_async import main
import asyncio
if __name__ == "__main__":
asyncio.run(main())