| 1234567891011121314 |
- """
- wishing you a happy life
- python version api for wishing tree
- author: tanlie
- date: 2026/8/30
- """
- from app import create_app
- app = create_app()
- if __name__ == "__main__":
- import uvicorn
- uvicorn.run("main:app", host="0.0.0.0", port=8000)
|