8 lines
227 B
Python
8 lines
227 B
Python
|
|
"""Scan Bridge Service - Prefect Managed"""
|
||
|
|
import sys
|
||
|
|
sys.path.insert(0, '/mnt/dolphinng5_predict/prod')
|
||
|
|
from scan_bridge_prefect_daemon import scan_bridge_daemon_flow
|
||
|
|
|
||
|
|
if __name__ == "__main__":
|
||
|
|
scan_bridge_daemon_flow()
|