pasteque/webtools/urls.py

8 lines
164 B
Python
Raw Normal View History

2018-05-11 20:59:16 +00:00
from django.contrib import admin
2018-05-06 21:19:49 +00:00
from django.urls import path, include
2013-04-04 17:37:30 +00:00
2018-05-06 21:19:49 +00:00
urlpatterns = [
2018-05-11 20:59:16 +00:00
path('admin/', admin.site.urls),
2018-05-06 21:19:49 +00:00
path('', include('paste.urls')),
]