17 lines
365 B
Python
17 lines
365 B
Python
|
|
#!/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())
|