mirror of
https://github.com/jumpserver/jumpserver.git
synced 2026-01-06 08:04:13 +00:00
12 lines
184 B
Python
12 lines
184 B
Python
# -*- coding: utf-8 -*-
|
|
#
|
|
|
|
from .base import BaseBackend
|
|
|
|
|
|
class VaultBackend(BaseBackend):
|
|
|
|
@classmethod
|
|
def filter(cls, username=None, asset=None, latest=True):
|
|
pass
|