# Copyright: (c) OpenSpug Organization. https://github.com/openspug/spug # Copyright: (c) # Released under the AGPL-3.0 License. from django.urls import path from apps.apis import config from apps.apis import deploy urlpatterns = [ path('config/', config.get_configs), path('deploy///', deploy.auto_deploy) ]