8 lines
114 B
Python
8 lines
114 B
Python
from django.contrib import admin
|
|
from django.urls import include, path
|
|
|
|
app_name = 'core'
|
|
|
|
urlpatterns = [
|
|
|
|
]
|