mirror of https://github.com/jumpserver/jumpserver
15 lines
264 B
Python
15 lines
264 B
Python
|
# ~*~ coding: utf-8 ~*~
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
|
||
|
from django.conf.urls import url
|
||
|
from .. import views
|
||
|
|
||
|
__all__ = ["urlpatterns"]
|
||
|
|
||
|
app_name = "audits"
|
||
|
|
||
|
urlpatterns = [
|
||
|
url(r'^ftp-log/$', views.FTPLogListView.as_view(), name='ftp-log-list'),
|
||
|
]
|