File size: 136 Bytes
5daa15d
 
 
 
 
 
 
1
2
3
4
5
6
7
8
from django.urls import path
from . import views

urlpatterns = [
    path('about_me/', views.about_me),
    path('', views.landing),
]