From 65d0c10889041ffb9a47a22e1125c2beafa20fd4 Mon Sep 17 00:00:00 2001 From: sm4640 Date: Tue, 8 Apr 2025 01:04:20 +0900 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20Feat:=20[#13]=20=ED=9A=8C=EC=9B=90?= =?UTF-8?q?=EA=B0=80=EC=9E=85,=20=EB=A1=9C=EA=B7=B8=EC=9D=B8,=20=ED=86=A0?= =?UTF-8?q?=ED=81=B0=20=EC=9E=AC=EB=B0=9C=EA=B8=89,=20=EB=8B=89=EB=84=A4?= =?UTF-8?q?=EC=9E=84=20=EC=A4=91=EB=B3=B5=20=EC=B2=B4=ED=81=AC=20url=20?= =?UTF-8?q?=EC=84=A4=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- users/urls.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 users/urls.py diff --git a/users/urls.py b/users/urls.py new file mode 100644 index 0000000..8d3fc65 --- /dev/null +++ b/users/urls.py @@ -0,0 +1,12 @@ +from django.urls import path + +from .views import * + +app_name = 'users' + +urlpatterns = [ + path('refresh-token/', RefreshAPIView.as_view()), + path('join/', JoinAPIView.as_view()), + path('login/', LoginAPIView.as_view()), + path('check/', NicknameAPIView.as_view()), +] \ No newline at end of file