Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. from django.conf.urls import url
  2.  
  3. from django.contrib import admin
  4. from webapp import views
  5. from django.urls import path
  6. from rest_framework.urlpatterns import format_suffix_patterns
  7.  
  8.  
  9. urlpatterns = [
  10.  
  11. url(r'^admin/', admin.site.urls),
  12. url(r'^employees/', views.employeeList.as_view()),
  13. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement