All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
11 lines
209 B
Python
11 lines
209 B
Python
from django.urls import path
|
|
|
|
from . import views
|
|
|
|
app_name = 'dailystone'
|
|
|
|
urlpatterns = [
|
|
path('', views.daily_stone, name='daily_stone'),
|
|
path('random/', views.random_stone, name='random_stone'),
|
|
]
|