Django backend for WorkX project
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

пре 3 година
пре 3 година
пре 3 година
пре 3 година
пре 3 година
пре 3 година
12345678910
  1. from django.urls import path, include
  2. from . import views
  3. from rest_framework import routers
  4. router = routers.DefaultRouter()
  5. router.register(r'employees', views.EmployeeViewSet)
  6. urlpatterns = [
  7. path('', include(router.urls)),
  8. ]