mirror of
https://github.com/himool/HimoolERP.git
synced 2025-02-25 14:44:02 +08:00
12 lines
306 B
Python
12 lines
306 B
Python
|
from django.urls import path
|
||
|
from . import views
|
||
|
|
||
|
urlpatterns = [
|
||
|
path('login/', views.login),
|
||
|
path('logout/', views.logout),
|
||
|
path('register/', views.register),
|
||
|
path('get_info/', views.get_info),
|
||
|
path('set_password/', views.set_password),
|
||
|
path('get_captcha/', views.get_captcha),
|
||
|
]
|