URL config

URL patterns of the dasf-broker-django frontend to be included via:

from django.urls import include, path

urlpatters = [
    path(
        "dasf",
        include("dasf_broker.frontend.urls"),
    ),
]