mirror of
https://github.com/YunoHost-Apps/seafile_ynh.git
synced 2024-09-03 20:26:01 +02:00
6 lines
155 B
Python
6 lines
155 B
Python
from django.conf.urls.defaults import patterns, url
|
|
|
|
|
|
urlpatterns = patterns('djblets.log.views',
|
|
url(r'^server/$', 'server_log', name='server-log')
|
|
)
|