added main-app

This commit is contained in:
DerTyp187
2021-11-09 20:18:10 +01:00
parent a5a563a1ff
commit 0c93c2e232
644 changed files with 18706 additions and 3 deletions

6
TealCode/main/urls.py Normal file
View File

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