6 lines
115 B
Python
6 lines
115 B
Python
|
from django.urls import include, path
|
||
|
from . import views
|
||
|
|
||
|
urlpatterns = [
|
||
|
path('',views.nerdshope,name='shop'),
|
||
|
]
|