7 lines
142 B
Python
7 lines
142 B
Python
from django.urls import path
|
|
from .views import BrandingView
|
|
|
|
urlpatterns = [
|
|
path('', BrandingView.as_view(), name='branding-detail'),
|
|
]
|