10 lines
161 B
Python
10 lines
161 B
Python
from django.urls import path
|
|
|
|
from .views import PlayersHomeView
|
|
|
|
app_name = "players"
|
|
|
|
urlpatterns = [
|
|
path("", PlayersHomeView.as_view(), name="index"),
|
|
]
|