mirror of
https://github.com/Rushilwiz/HiLo.git
synced 2025-04-19 19:30:16 -04:00
8 lines
173 B
Python
Executable File
8 lines
173 B
Python
Executable File
from django.urls import path
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path ('', views.homepage, name="homepage"),
|
|
path ('finish/', views.finish, name="finish")
|
|
]
|