12 lines
376 B
Python
12 lines
376 B
Python
from django.urls import path, include
|
|
|
|
from . import studentViews, studentUrls, companyUrls, adminUrls
|
|
|
|
urlpatterns = [
|
|
path('login/', studentViews.login, name="Login"),
|
|
path('refresh_token/', studentViews.refresh, name="Refresh Token"),
|
|
path('student/', include(studentUrls)),
|
|
path('company/', include(companyUrls)),
|
|
path('admin/', include(adminUrls)),
|
|
]
|