8 lines
155 B
Python
8 lines
155 B
Python
|
from django.urls import path
|
||
|
|
||
|
from . import companyViews
|
||
|
|
||
|
urlpatterns = [
|
||
|
path('addInternship/', companyViews.addInternship, name="Add Internship"),
|
||
|
]
|