14 lines
341 B
Python
14 lines
341 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
from __future__ import annotations
|
||
|
|
||
|
# -*- coding: utf-8 -*-
|
||
|
from __future__ import annotations
|
||
|
|
||
|
from keep_it_secret.ext.vault import VaultSecrets
|
||
|
from keep_it_secret.fields import SecretsField
|
||
|
from keep_it_secret.secrets import Secrets
|
||
|
|
||
|
|
||
|
class TestingVaultSecrets(Secrets):
|
||
|
vault = SecretsField.new(VaultSecrets)
|