All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
8 lines
175 B
Python
8 lines
175 B
Python
from django.urls import path
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path('chart/', views.chart, name='chart'),
|
|
path('charts/', views.charts_list, name='charts_list'),
|
|
]
|