CMS_Django_Backend/apps/auth/urls.py

8 lines
202 B
Python
Raw Normal View History

2024-08-18 20:51:27 +08:00
from django.urls import path
from apps.auth import views
urlpatterns = [
path("gettoken/", views.gettoken, name="getToken"),
path("searchuser/", views.search_user, name="searchuser"),
]