- Remove usage of django.urls.patterns - Change urls tuples to lists - Make all string view names callables - This is the second of several urls updates for LMS; a work in progress
10 lines
213 B
Python
10 lines
213 B
Python
"""
|
|
API URLs.
|
|
"""
|
|
from django.conf.urls import include, url
|
|
|
|
urlpatterns = [
|
|
url(r'^v0/', include('commerce.api.v0.urls', namespace='v0')),
|
|
url(r'^v1/', include('commerce.api.v1.urls', namespace='v1')),
|
|
]
|