From 709f6a8c2982bf15a03de387c60c06af67e4ed56 Mon Sep 17 00:00:00 2001 From: sm4640 Date: Thu, 15 May 2025 00:05:56 +0900 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20Feat:=20[#25]=20=ED=9C=B4=EB=8C=80?= =?UTF-8?q?=ED=8F=B0=20=EC=9D=B8=EC=A6=9D=20api=20url=20=EC=84=A4=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- codes/urls.py | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 codes/urls.py diff --git a/codes/urls.py b/codes/urls.py new file mode 100644 index 0000000..2a1a33b --- /dev/null +++ b/codes/urls.py @@ -0,0 +1,10 @@ +from django.urls import path + +from .views import * + +app_name = 'codes' + +urlpatterns = [ + path('certificate/', CertificationAPIView.as_view()), + # path('invite/', ) +] \ No newline at end of file