Files
shynet/shynet/core/urls.py
R. Miles McCain e8c00bf5c8 Code reformatting
2020-04-15 18:01:52 -04:00

12 lines
276 B
Python

from django.contrib import admin
from django.urls import include, path, reverse_lazy
from django.views.generic import RedirectView
from . import views
urlpatterns = [
path(
"", RedirectView.as_view(url=reverse_lazy("dashboard:dashboard")), name="index"
),
]