Files
chat_backend/llm_be/finance/apps.py
T
westfarn f92bd268b3
CI / test (pull_request) Successful in 9s
Unit Tests / test (pull_request) Successful in 10s
Add finance app with Stripe Checkout subscriptions (#21)
Introduce Invoice/Payment ledger models, $10/mo settings-backed pricing,
hosted Checkout + signed webhooks, Django admin, and authenticated list APIs.
2026-07-26 19:16:34 -05:00

8 lines
175 B
Python

from django.apps import AppConfig
class FinanceConfig(AppConfig):
default_auto_field = "django.db.models.BigAutoField"
name = "finance"
verbose_name = "Finance"