7 lines
161 B
Python
7 lines
161 B
Python
from django.contrib import admin
|
|
from django.urls import path, include
|
|
from .views import *
|
|
|
|
urlpatterns = [
|
|
path('test_code', test_code, name='test_code')
|
|
] |