11 lines
190 B
Python
11 lines
190 B
Python
|
from typing import Any, List
|
||
|
|
||
|
from django.contrib import admin
|
||
|
from django.urls import include, path
|
||
|
|
||
|
from . import views
|
||
|
|
||
|
urlpatterns: list[Any] = [
|
||
|
path("", views.QAView.as_view()),
|
||
|
]
|