b5a62ee9a3
- domain: User, Workspace, Project, AssetLibrary, Asset, IngestJob - ports: repository interfaces - application: use cases - adapters: in-memory - API: FastAPI 5 routes - worker: Celery ingest_asset - tests: 4 passing
11 lines
180 B
Python
11 lines
180 B
Python
from worker_app.tasks.health import healthcheck
|
|
|
|
|
|
def main() -> None:
|
|
print("xiaoxia-saas worker scaffold")
|
|
print(healthcheck.name)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|