11 lines
203 B
Python
11 lines
203 B
Python
from django.urls import path
|
|
|
|
from . import views
|
|
|
|
|
|
urlpatterns = [
|
|
path('', views.gameboard, name='gameboard'),
|
|
path('toggle-applets', views.toggle_game_applets, name='toggle_game_applets'),
|
|
]
|
|
|