Initial commit

This commit is contained in:
2026-02-14 09:32:46 +03:00
commit 01d560cfb4
26 changed files with 829 additions and 0 deletions

6
bom_manager/urls.py Normal file
View File

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