Imsachin010's picture
first commit
b77d3c5
raw
history blame contribute delete
326 Bytes
# salespath_env/server/app.py
from openenv.core.env_server import create_fastapi_app
from ..models import (
SalesPathAction,
SalesPathObservation,
)
from .salespath_environment import (
SalesPathEnvironment,
)
app = create_fastapi_app(
SalesPathEnvironment,
SalesPathAction,
SalesPathObservation,
)