from django.urls import path, include
from . import views
urlpatterns = [
path('blogs/', include('blog.urls')),
path('', views.index, name='index')
]