9 lines
223 B
Python
9 lines
223 B
Python
from django.contrib import admin
|
|
from django.urls import path, include
|
|
from django.conf.urls.static import static
|
|
from django.conf import settings
|
|
from .views import *
|
|
|
|
urlpatterns = [
|
|
path('', MainPage, name='main'),
|
|
] |