first commit

This commit is contained in:
2021-05-14 14:41:00 +05:30
commit b9f8614ddf
385 changed files with 31180 additions and 0 deletions

14
core/urls.py Normal file
View File

@@ -0,0 +1,14 @@
# -*- encoding: utf-8 -*-
"""
License: MIT
Copyright (c) 2019 - present AppSeed.us
"""
from django.contrib import admin
from django.urls import path, include # add this
urlpatterns = [
path('admin/', admin.site.urls),
path('', include('processdata.urls')),
path('', include('app.urls')), # add this
]