10 lines
173 B
Python
10 lines
173 B
Python
from django.contrib import admin
|
|
from django.urls import path
|
|
|
|
from .views import *
|
|
|
|
urlpatterns = [
|
|
path(*ExperimentsView.as_path()),
|
|
path('get', get_experiment)
|
|
]
|