fisk/core/lib/billing.py

12 lines
271 B
Python
Raw Normal View History

2023-02-24 07:20:31 +00:00
from django.conf import settings
from lago_python_client import Client
from lago_python_client.models import (
Charge,
Charges,
Customer,
CustomerBillingConfiguration,
Plan,
)
2023-02-15 07:20:53 +00:00
2023-02-24 07:20:31 +00:00
client = Client(api_key=settings.LAGO_API_KEY, api_url=settings.LAGO_URL)