8 lines
162 B
Python
8 lines
162 B
Python
from django.urls import path
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path('', views.home, name="home"),
|
|
# path('filename', views.i2pfile, name='i2pfile'),
|
|
]
|