8 lines
205 B
Python
8 lines
205 B
Python
import sys
|
|
import os
|
|
|
|
sys.path.insert(0, os.path.join(os.path.dirname(__file__), 'agents', 'core-logic'))
|
|
sys.path.insert(0, os.path.dirname(__file__))
|
|
|
|
from agents.core_logic.app import app # noqa: F401
|