orfplayer/orfplayer/urls.py
2022-05-10 14:26:31 +02:00

6 lines
97 B
Python

from django.urls import path, include
urlpatterns = [
path("", include("frontend.urls")),
]