from django.urls import path from .views import * urlpatterns = [ path('provinces/', ProvincesView.as_view()), path('provinces//', ProvinceView.as_view()), path('assault_troops/', AssaultTroopsView.as_view()), path('assault_troops//', AssaultTroopView.as_view()), path('players/', PlayersView.as_view()), path('players//', PlayerView.as_view()), path('servers/', ServersView.as_view()), path('servers//', ServerView.as_view()), path('user_data/', UserDataView.as_view()), path('user_data//', UserDatumView.as_view()), path('user_action/', UserActionView.as_view()), ]