12 lines
307 B
Python
12 lines
307 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
# type: ignore
|
||
|
from __future__ import annotations
|
||
|
|
||
|
from keep_it_secret.fields import EnvField, LiteralField
|
||
|
from keep_it_secret.secrets import Secrets
|
||
|
|
||
|
|
||
|
class TestingSecrets(Secrets):
|
||
|
spam: str = EnvField.new('KEEP_IT_SECRET_TESTS_SPAM')
|
||
|
eggs: str = LiteralField.new('eggs')
|