9 lines
159 B
Python
9 lines
159 B
Python
# from django.urls import path
|
|
|
|
from django.conf.urls import url, include
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
url(r'^$', views.profile),
|
|
# path('')
|
|
]
|