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

9 lines
162 B
Python
Raw Normal View History

2021-02-07 20:20:48 +02:00
from django.urls import path
from . import views
urlpatterns = [
2021-02-27 01:07:14 +02:00
path('text', views.text, name = 'text'),
2021-02-27 01:40:52 +02:00
path('command', views.command, name = 'command'),
2021-02-07 20:20:48 +02:00
]