This repository has been archived on 2025-02-01. You can view files and clone it, but cannot push or open issues or pull requests.
django-stock/homepage/urls.py

8 lines
146 B
Python

from django.urls import path
from . import views
app_name = 'homepage'
urlpatterns = [
path('', views.IndexView.as_view(), name='index'),
]