# Copyright: (c) OpenSpug Organization. https://github.com/openspug/spug # Copyright: (c) # Released under the AGPL-3.0 License. from django.urls import path from .views import * urlpatterns = [ path('', RepositoryView.as_view()), path('/', get_detail), path('request/', get_requests), ]