initial commit

This commit is contained in:
2025-03-25 18:18:56 +03:00
parent b225b3312f
commit 2873b0e59a
16 changed files with 444 additions and 0 deletions

8
urls.py Normal file
View File

@@ -0,0 +1,8 @@
# urls.py
from django.urls import path
from .views import PixelDetailView, UpperLimitView
urlpatterns = [
path('pixel/<int:hpid>/', PixelDetailView.as_view(), name='pixel-detail'),
path('upper-limit/', UpperLimitView.as_view(), name='upper-limit')
]