from django.urls import path
from .views import *

app_name = 'home'
urlpatterns = [
    path('', HomeView.as_view(), name='index'),
    path('get-active-user/', get_active_user, name='get.active.user'),
]
