NASA-TEST

This commit is contained in:
2024-05-08 19:29:42 +03:00
parent fb4197cb2d
commit 63f31f7568
57 changed files with 3886 additions and 0 deletions

6
main/urls.py Normal file
View File

@@ -0,0 +1,6 @@
from django.urls import path, include
from .views import MainView
#
urlpatterns = [
path('', MainView.as_view(), name='main'),
]