first commit

This commit is contained in:
Maxim
2025-12-11 19:58:49 +03:00
commit 87f3d0a36c
18 changed files with 926 additions and 0 deletions

10
metrics/urls.py Normal file
View File

@@ -0,0 +1,10 @@
from django.urls import path
from . import views
app_name = 'metrics'
urlpatterns = [
path('api/track/bot/', views.track_bot_click, name='track_bot'),
path('api/track/channel/', views.track_channel_click, name='track_channel'),
path('', views.dashboard, name='dashboard'),
]