experiments

This commit is contained in:
Administrator
2023-09-23 18:54:49 +03:00
parent 4991376d93
commit 59aa298db6
13 changed files with 200 additions and 2 deletions

8
experiments/urls.py Normal file
View File

@@ -0,0 +1,8 @@
from django.contrib import admin
from django.urls import path
from .views import *
urlpatterns = [
path(*ExperimentsView.as_path())
]