mirror of
https://github.com/eduardogsilva/wireguard_webadmin.git
synced 2026-02-19 19:26:17 +00:00
8 lines
142 B
Python
8 lines
142 B
Python
from django.urls import path
|
|
|
|
from wgrrd.views import view_rrd_graph
|
|
|
|
urlpatterns = [
|
|
path('graph/', view_rrd_graph, name='rrd_graph'),
|
|
]
|