kiwi/app/services/__init__.py
pyr0ball 8cbde774e5 chore: initial commit — kiwi Phase 2 complete
Pantry tracker app with:
- FastAPI backend + Vue 3 SPA frontend
- SQLite via circuitforge-core (migrations 001-005)
- Inventory CRUD, barcode scan, receipt OCR pipeline
- Expiry prediction (deterministic + LLM fallback)
- CF-core tier system integration
- Cloud session support (menagerie)
2026-03-30 22:20:48 -07:00

8 lines
No EOL
155 B
Python

# app/services/__init__.py
"""
Business logic services for Kiwi.
"""
from app.services.receipt_service import ReceiptService
__all__ = ["ReceiptService"]