17 lines
558 B
Python
17 lines
558 B
Python
"""
|
|
URL patterns for billing module
|
|
"""
|
|
from django.urls import path, include
|
|
from rest_framework.routers import DefaultRouter
|
|
from .views import CreditBalanceViewSet, CreditUsageViewSet, CreditTransactionViewSet
|
|
|
|
router = DefaultRouter()
|
|
router.register(r'credits/balance', CreditBalanceViewSet, basename='credit-balance')
|
|
router.register(r'credits/usage', CreditUsageViewSet, basename='credit-usage')
|
|
router.register(r'credits/transactions', CreditTransactionViewSet, basename='credit-transactions')
|
|
|
|
urlpatterns = [
|
|
path('', include(router.urls)),
|
|
]
|
|
|