"""
Coba 後端應用程式套件。

模組結構:
    app.main      ─ FastAPI 入口
    app.config    ─ 環境變數設定(Pydantic Settings)
    app.database  ─ PostgreSQL async 連線管理
    app.models    ─ SQLAlchemy 資料表模型(資料庫長相)
    app.schemas   ─ Pydantic 請求/回應 schema(API 介面長相)
    app.api       ─ API 路由(把 HTTP 請求對應到實作)
    app.core      ─ 共用核心(密碼雜湊、JWT、依賴注入、seed)
"""
