export WantsContentType

This commit is contained in:
Yusur 2025-08-10 09:40:01 +02:00
parent a23cad2e45
commit 55c9f5fee2
2 changed files with 5 additions and 1 deletions

View file

@ -32,6 +32,7 @@ from .lex import symbol_table, lex, ilex
from .strtools import PrefixIdentifier from .strtools import PrefixIdentifier
from .validators import matches from .validators import matches
from .redact import redact_url_password from .redact import redact_url_password
from .http import WantsContentType
__version__ = "0.5.0-dev31" __version__ = "0.5.0-dev31"
@ -40,7 +41,7 @@ __all__ = (
'DictConfigSource', 'EnvConfigSource', 'I18n', 'Incomplete', 'JsonI18n', 'DictConfigSource', 'EnvConfigSource', 'I18n', 'Incomplete', 'JsonI18n',
'MissingConfigError', 'MissingConfigWarning', 'PrefixIdentifier', 'MissingConfigError', 'MissingConfigWarning', 'PrefixIdentifier',
'Siq', 'SiqCache', 'SiqGen', 'SiqType', 'Snowflake', 'SnowflakeGen', 'Siq', 'SiqCache', 'SiqGen', 'SiqType', 'Snowflake', 'SnowflakeGen',
'StringCase', 'TimedDict', 'TomlI18n', 'Wanted', 'StringCase', 'TimedDict', 'TomlI18n', 'Wanted', 'WantsContentType',
'addattr', 'additem', 'age_and_days', 'b2048decode', 'b2048encode', 'addattr', 'additem', 'age_and_days', 'b2048decode', 'b2048encode',
'b32ldecode', 'b32lencode', 'b64encode', 'b64decode', 'cb32encode', 'b32ldecode', 'b32lencode', 'b64encode', 'b64decode', 'cb32encode',
'cb32decode', 'count_ones', 'deprecated', 'ilex', 'join_bits', 'cb32decode', 'count_ones', 'deprecated', 'ilex', 'join_bits',

View file

@ -22,3 +22,6 @@ class WantsContentType(enum.Enum):
JSON = 'application/json' JSON = 'application/json'
HTML = 'text/html' HTML = 'text/html'
__all__ = ('WantsContentType',)