1
0
mirror of https://github.com/MarkParker5/STARK.git synced 2025-07-02 22:36:54 +02:00
Files
STARK/archieapi/apps/api/urls.py

8 lines
108 B
Python
Raw Normal View History

2021-02-07 20:20:48 +02:00
from django.urls import path
from . import views
urlpatterns = [
path('', views.index, name = 'index')
]