8 lines
113 B
Python
8 lines
113 B
Python
|
from django.urls import path
|
||
|
from . import views
|
||
|
|
||
|
app_name = "blog"
|
||
|
urlpatterns = [
|
||
|
path('', views.index),
|
||
|
]
|