mirror of
https://github.com/openspug/spug.git
synced 2026-01-25 15:02:04 +00:00
10 lines
201 B
Python
10 lines
201 B
Python
from django.urls import path
|
|
|
|
from .views import *
|
|
|
|
urlpatterns = [
|
|
path('', AppView.as_view()),
|
|
path('deploy/', DeployView.as_view()),
|
|
path('deploy/<int:d_id>/versions/', get_versions),
|
|
]
|