bmc_hub/app/routers/billing.py

21 lines
409 B
Python
Raw Normal View History

2025-12-05 14:22:39 +01:00
"""
Billing Router
API endpoints for billing operations
"""
from fastapi import APIRouter
router = APIRouter()
@router.get("/billing/invoices")
async def list_invoices():
"""List all invoices"""
return {"message": "Billing integration coming soon"}
@router.post("/billing/sync")
async def sync_to_economic():
"""Sync data to e-conomic"""
return {"message": "e-conomic sync coming soon"}