async
This commit is contained in:
16
neuralink/run_async.py
Executable file
16
neuralink/run_async.py
Executable file
@@ -0,0 +1,16 @@
|
||||
#!/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())
|
||||
Reference in New Issue
Block a user