GetTogether/resume/test_urls.py

15 lines
255 B
Python
Raw Normal View History

"""
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'),
]