from django.urls import path
from users import views
urlpatterns = [
path('status', views.server_status, name='server-status')
]