remove unused stuff. add player energy

This commit is contained in:
Matteo Rosati
2026-02-11 18:03:54 +01:00
parent 6acc708f46
commit 24a26bd092
5 changed files with 16 additions and 146 deletions

View File

@@ -1,9 +1,5 @@
from django.urls import path
from .views import LoginView, LogoutView, RegisterView
from .views import prova
urlpatterns = [
path("auth/register", RegisterView.as_view(), name="auth-register"),
path("auth/login", LoginView.as_view(), name="auth-login"),
path("auth/logout", LogoutView.as_view(), name="auth-logout"),
]
urlpatterns = [path("prova/", prova)]