1
0
mirror of https://github.com/MarkParker5/STARK.git synced 2025-11-28 21:39:53 +02:00
This commit is contained in:
MarkParker5
2021-02-07 20:20:48 +02:00
parent ff1e832dcc
commit 93f4f5a8de
18 changed files with 260 additions and 9 deletions

View File

@@ -0,0 +1,7 @@
from django.urls import path
from . import views
urlpatterns = [
path('', views.index, name = 'index')
]