cdc-placement-website-backend/CDC_Backend/APIs/companyUrls.py

9 lines
225 B
Python
Raw Permalink Normal View History

2021-10-15 20:47:23 +05:30
from django.urls import path
2022-05-02 17:16:56 +05:30
from . import companyViews
2021-10-15 20:47:23 +05:30
urlpatterns = [
path('addPlacement/', companyViews.addPlacement, name="Add Placement"),
2021-12-17 17:15:56 +05:30
path('verifyEmail/', companyViews.verifyEmail, name="Verify Email"),
2021-10-15 20:47:23 +05:30
]