mirror of https://github.com/openspug/spug
13 lines
365 B
Python
13 lines
365 B
Python
# Copyright: (c) OpenSpug Organization. https://github.com/openspug/spug
|
|
# Copyright: (c) <spug.dev@gmail.com>
|
|
# 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/<int:deploy_id>/<str:kind>/', deploy.auto_deploy)
|
|
]
|