mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-05 01:16:27 +00:00
8 lines
118 B
Python
8 lines
118 B
Python
|
from django.conf.urls import url
|
||
|
|
||
|
from . import views
|
||
|
|
||
|
urlpatterns = [
|
||
|
url(r'^$', views.search, name='search'),
|
||
|
]
|