8 lines
116 B
Python
8 lines
116 B
Python
|
|
"""Common URL patterns"""
|
||
|
|
|
||
|
|
from django.urls import path
|
||
|
|
|
||
|
|
urlpatterns = [
|
||
|
|
# Common endpoints can be added here
|
||
|
|
]
|