bdd181425b
Docker Compose project with automated Playwright benchmarks comparing django-liveview 2.2.0 against Phoenix LiveView 1.0 across 6 scenarios.
9 lines
250 B
Python
9 lines
250 B
Python
from django.urls import path
|
|
from app import views
|
|
|
|
urlpatterns = [
|
|
path("", views.index, name="index"),
|
|
path("bench/clear/", views.bench_clear, name="bench_clear"),
|
|
path("bench/populate/", views.bench_populate, name="bench_populate"),
|
|
]
|