mirror of
https://github.com/Rushilwiz/relish.git
synced 2025-04-09 14:30:19 -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'),
|
|
]
|