11 lines
238 B
Python
11 lines
238 B
Python
|
"""passbook proxy urls"""
|
||
|
from django.urls import path
|
||
|
|
||
|
from passbook.providers.proxy.views import K8sManifestView
|
||
|
|
||
|
urlpatterns = [
|
||
|
path(
|
||
|
"<int:provider>/k8s-manifest/", K8sManifestView.as_view(), name="k8s-manifest"
|
||
|
),
|
||
|
]
|