9 lines
141 B
Python
9 lines
141 B
Python
|
from django.urls import path
|
||
|
|
||
|
from lg import views
|
||
|
|
||
|
app_name = 'lg'
|
||
|
urlpatterns = [
|
||
|
path('new_player', views.NewPlayerView.as_view()),
|
||
|
]
|