from django.urls import path
from . import views

app_name = 'profiles'

urlpatterns = [
    path('student/', views.StudentProfileView.as_view(), name='student_profile'),
    path('teacher/', views.TeacherProfileView.as_view(), name='teacher_profile'),
]
