This repository has been archived on 2024-11-29. You can view files and clone it, but cannot push or open issues or pull requests.
2020-10-17 22:39:07 -04:00

8 lines
139 B
Python

from django.urls import path
from . import views
app_name = 'api'
urlpatterns = [
path('', views.IndexView.as_view(), name='index')
]