8
0
Fork 0
mirror of https://gitlab2.federez.net/re2o/re2o synced 2024-09-28 15:13:09 +00:00
re2o/logs/urls.py
2016-10-31 17:27:27 +01:00

7 lines
116 B
Python

from django.conf.urls import url
from . import views
urlpatterns = [
url(r'^$', views.index, name='index'),
]