These endpoints are currently for internal use only, but should be versioned nonetheless; Drupal will begin using the basket creation endpoint soon. No functionality has been changed. XCOM-494.
9 lines
239 B
Python
9 lines
239 B
Python
""" API URLs. """
|
|
from django.conf.urls import patterns, url, include
|
|
|
|
urlpatterns = patterns(
|
|
'',
|
|
url(r'^v0/', include('commerce.api.v0.urls', namespace='v0')),
|
|
url(r'^v1/', include('commerce.api.v1.urls', namespace='v1')),
|
|
)
|