| 123456789 |
- import uvicorn
- from src.api.main import app
- if __name__ == "__main__":
- # This file serves as a root-level wrapper for the DDD transition.
- # It redirects execution to the new API entry point in src/api/main.py.
- print("Redirecting to DDD Architecture Entry Point (src.api.main)...")
- print("Starting server... http://localhost:8000/docs")
- uvicorn.run(app, host="0.0.0.0", port=8000)
|