Feat: [#25] 휴대폰 인증 api url 설정

This commit is contained in:
sm4640
2025-05-15 00:05:56 +09:00
parent 629cdcb61b
commit 709f6a8c29

10
codes/urls.py Normal file
View File

@@ -0,0 +1,10 @@
from django.urls import path
from .views import *
app_name = 'codes'
urlpatterns = [
path('certificate/', CertificationAPIView.as_view()),
# path('invite/', )
]