jumpserver/apps/accounts/const/vault.py

10 lines
229 B
Python
Raw Normal View History

from django.db import models
from django.utils.translation import gettext_lazy as _
__all__ = ['VaultTypeChoices']
class VaultTypeChoices(models.TextChoices):
local = 'local', _('Database')
hcp = 'hcp', _('HCP Vault')