8 lines
247 B
Python
8 lines
247 B
Python
from django.urls import path
|
|
from .views import PlayerListView, PlayerImportView
|
|
|
|
urlpatterns = [
|
|
path('players/', PlayerListView.as_view(), name='player-list'),
|
|
path('players/import/', PlayerImportView.as_view(), name='player-import'),
|
|
]
|