Files
colio/codes/urls.py
2025-05-15 00:05:56 +09:00

10 lines
171 B
Python

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