This commit is contained in:
Holger Sielaff
2025-08-27 09:55:55 +02:00
commit 90c0ff61ed
107 changed files with 8535 additions and 0 deletions

9
manager/urls.py Normal file
View File

@@ -0,0 +1,9 @@
from django.urls import path
from manager import views
app_name = 'manager'
urlpatterns = [
path('resync-all/', views.sync_all, name='sync_all'),
path('test/mikrotik/', views.test_mikrotik, name='test_mikrotik'),
]