7 lines
125 B
Python
7 lines
125 B
Python
from django.urls import path
|
|
from home.views import *
|
|
|
|
urlpatterns = [
|
|
path('' , homePageFront, name='homePageFront'),
|
|
]
|