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