13 lines
179 B
Python
13 lines
179 B
Python
"""
|
|
Branding API endpoint urls.
|
|
"""
|
|
|
|
|
|
from django.conf.urls import url
|
|
|
|
from branding.views import footer
|
|
|
|
urlpatterns = [
|
|
url(r"^footer$", footer, name="branding_footer"),
|
|
]
|