DjangoDocker / myapp /urls.py
CazC's picture
Backed out the folder
83c570e
raw
history blame
105 Bytes
from django.urls import path
from . import views
urlpatterns = [
path("", views.home, name="home")
]