pasteque/webtools/urls.py

8 lines
167 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 = [
path("::/admin/", admin.site.urls),
path("", include("paste.urls")),
2018-05-06 21:19:49 +00:00
]