Initial commit

This commit is contained in:
2022-03-09 11:33:05 +01:00
commit fea6cdcf96
15 changed files with 233 additions and 0 deletions

8
container/urls.py Normal file
View File

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