1. from django.http import HttpResponse
    
  2. from django.urls import path
    
  3. 
    
  4. urlpatterns = [
    
  5.     path("", lambda req: HttpResponse("example view")),
    
  6. ]