ungleich_hack_3/friendly_cat/urls.py

11 lines
166 B
Python

"""
URLs for the friendly_cat Django app
"""
from django.urls import path
from friendly_cat import views
urlpatterns = [
path("", views.index, name="index"),
]