mirror of
https://github.com/Rushilwiz/relish.git
synced 2025-04-19 02:50:17 -04:00
7 lines
118 B
Python
7 lines
118 B
Python
from django.urls import path, include
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path('', views.index, name='index'),
|
|
]
|