14 lines
416 B
Python
14 lines
416 B
Python
from django.urls import path
|
|
from .views import *
|
|
|
|
urlpatterns = [
|
|
path('provinces/', ProvincesView),
|
|
path('provinces/<int:nm>/', ProvinceView),
|
|
path('assault_troops/', AssaultTroopsView),
|
|
path('assault_troops/<int:nm>/', AssaultTroopView),
|
|
path('players/', PlayersView),
|
|
path('players/<int:nm>/', PlayerView),
|
|
path('servers/', ServersView),
|
|
path('servers/<int:nm>/', ServerView),
|
|
]
|