mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-10-22 08:19:04 +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
|