mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-23 11:53:12 +00:00
9 lines
132 B
Python
9 lines
132 B
Python
|
from django.conf.urls import url
|
||
|
|
||
|
from . import views
|
||
|
|
||
|
urlpatterns = [
|
||
|
url(r'^new_user/$', views.new_user, name='new_user'),
|
||
|
]
|
||
|
|