mirror of
https://github.com/DarrenOfficial/dpaste.git
synced 2024-11-23 20:06:35 +11:00
7 lines
152 B
Python
7 lines
152 B
Python
from django.conf.urls import url
|
|
|
|
from ..views import snippet_api
|
|
|
|
urlpatterns = [
|
|
url(r'^api/$', snippet_api, name='dpaste_api_create_snippet'),
|
|
]
|