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

8 lines
155 B
Python

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