File size: 345 Bytes
2043afa
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
"""ASGI entrypoint for backend service in monorepo layout."""

from __future__ import annotations

import sys
from pathlib import Path

BACKEND_DIR = Path(__file__).resolve().parent
SRC = BACKEND_DIR / "src"
if str(SRC) not in sys.path:
    sys.path.insert(0, str(SRC))

from polypharmacy_env.api.app import app  # noqa: E402

__all__ = ["app"]