mirror of
https://github.com/kristoferssolo/kristofersxyz.git
synced 2025-10-21 18:30:34 +00:00
8 lines
169 B
Python
8 lines
169 B
Python
from django.urls import path
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path('', views.index, name='home'),
|
|
path('lightsaber', views.lightsaber, name='lightsaber'),
|
|
]
|