Init, base deps

This commit is contained in:
2021-02-03 17:37:08 +00:00
parent c3f9f2dffe
commit ac81466985
28 changed files with 184360 additions and 0 deletions

8
core/urls.py Normal file
View File

@@ -0,0 +1,8 @@
from django.contrib import admin
from django.urls import path
from django.conf.urls import include
urlpatterns = [
path('', include('users.urls')),
path('admin/', admin.site.urls),
]