15 lines
317 B
Python
15 lines
317 B
Python
# -*- 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
|
|
]
|