NASA-TEST

This commit is contained in:
2024-05-08 19:21:13 +03:00
commit 4dee6de30c
13 changed files with 293 additions and 0 deletions

6
Nasa-TEST/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'),
]