mirror of
https://github.com/Hopiu/django.git
synced 2026-03-26 19:00:24 +00:00
10 lines
211 B
Python
10 lines
211 B
Python
from django.conf.urls import url, patterns
|
|
from django.http import HttpResponse
|
|
|
|
def helloworld(request):
|
|
return HttpResponse("Hello World!")
|
|
|
|
urlpatterns = patterns(
|
|
"",
|
|
url("^$", helloworld)
|
|
)
|