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

8 lines
155 B
Python
Raw Permalink Normal View History

2024-06-21 00:45:45 +05:30
from django.urls import path
from . import companyViews
urlpatterns = [
path('addInternship/', companyViews.addInternship, name="Add Internship"),
]