8 lines
219 B
Python
8 lines
219 B
Python
import sys
|
|
import os
|
|
|
|
# /app er WORKDIR, agents/core-logic ligg der etter COPY . .
|
|
sys.path.insert(0, os.path.join(os.path.dirname(os.path.abspath(__file__)), 'agents', 'core-logic'))
|
|
|
|
from app import app # noqa: F401
|