This repository has been archived on 2022-09-23. You can view files and clone it, but cannot push or open issues or pull requests.
webdev/website/blog/urls.py

7 lines
158 B
Python
Raw Normal View History

2021-12-25 06:48:03 +05:30
from django.urls import path, include
2021-12-25 04:03:45 +05:30
from . import views
urlpatterns = [
2021-12-25 06:48:03 +05:30
path('blogs/', include('blog.urls')),
2021-12-25 04:03:45 +05:30
path('', views.index, name='index')
]