apply languages

This commit is contained in:
Egor Matveev
2022-02-16 17:40:46 +03:00
parent 1e455346ff
commit 2948c8252e
39 changed files with 758 additions and 12 deletions

10
Checker/urls.py Normal file
View File

@@ -0,0 +1,10 @@
from django.urls import path
from Checker import views
urlpatterns = [
path("status", views.status),
path("available", views.available),
path("get_dynamic", views.get_dynamic),
path("set_result", views.set_result),
]