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

8 lines
152 B
Python

from django.urls import path
from . import companyViews
urlpatterns = [
path('addPlacement/', companyViews.addPlacement, name="Add Placement"),
]