8 lines
128 B
Python
8 lines
128 B
Python
|
from django.urls import path, include
|
||
|
|
||
|
from . import companyUrls
|
||
|
|
||
|
urlpatterns = [
|
||
|
path('company/', include(companyUrls)),
|
||
|
]
|