Files

17 lines
365 B
Python
Raw Permalink Normal View History

2025-12-14 14:46:45 +03:00
#!/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())