summaryrefslogtreecommitdiff
path: root/command/urls.py
blob: f94d9ff7f1052b05fa8531a90b014cd81c13a131 (plain)
1
2
3
4
5
6
7
from django.urls import path

from . import views

urlpatterns = [
    path('',views.command,name='command'),
]