Files
shoppy/backoffice/urls/taxes.py
T
pablo 2a9407e676
CI / ci (ubuntu-24.04, 3.13) (push) Has been cancelled
feat: backoffice setup
2026-07-23 13:31:53 +02:00

8 lines
144 B
Python

from django.urls import path
from backoffice.views import taxes
urlpatterns = [
path('', taxes.TaxListView.as_view(), name='tax_list'),
]