GetTogether/resume/test_urls.py
2018-06-13 10:03:55 -04:00

14 lines
255 B
Python

"""
Testing URL configuration for this app only
"""
from django.urls import path, include
from django.http import HttpResponse
def test_view():
return HttpResponse('Test View')
urlpatterns = [
path('test/view', test_view, name='test-view'),
]