from django.urls import path from driver.views import SendCommand, Function, Cab, Emergency, Infra urlpatterns = [ path('emergency', Emergency.as_view()), path('infra', Infra.as_view()), path('/command', SendCommand.as_view()), path('/cab', Cab.as_view()), path('/function', Function.as_view()), ]