from django.urls import path
from . import views

urlpatterns = [
    path('paycodes/', views.paycode_list, name='paycode-list'),
    path('paycodes/<uuid:pk>/', views.paycode_detail, name='paycode-detail'),
] 