from django.urls import path
from lg import views
app_name = 'lg'
urlpatterns = [
path('new_player', views.NewPlayerView.as_view()),
]