9 lines
224 B
Python
9 lines
224 B
Python
|
|
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'),
|
||
|
|
]
|