You've already forked STARK
mirror of
https://github.com/MarkParker5/STARK.git
synced 2025-07-02 22:36:54 +02:00
9 lines
162 B
Python
9 lines
162 B
Python
from django.urls import path
|
|
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path('text', views.text, name = 'text'),
|
|
path('command', views.command, name = 'command'),
|
|
]
|