brewery-website/beer/urls.py
2024-06-05 10:27:13 -04:00

7 lines
105 B
Python

from django.urls import path
from .views import home
urlpatterns = [
path('', home, name='home'),
]