mirror of
https://github.com/mealie-recipes/mealie.git
synced 2026-01-11 03:21:24 -05:00
* change ALLOW_SIGNUP to default to false * add 1.4.0 tag for OIDC docs * new notes on security inline with security/policy review * safer transport for external requests * fix linter errors * docs: Tidy up wording/formatting * fix request errors * whoops * fix implementation with std lib * format * Remove check on netloc_parts. It only includes URL after any @ --------- Co-authored-by: boc-the-git <3479092+boc-the-git@users.noreply.github.com> Co-authored-by: Brendan <b.oconnell14@gmail.com>
8 lines
183 B
Python
8 lines
183 B
Python
from .transport import AsyncSafeTransport, ForcedTimeoutException, InvalidDomainError
|
|
|
|
__all__ = [
|
|
"AsyncSafeTransport",
|
|
"ForcedTimeoutException",
|
|
"InvalidDomainError",
|
|
]
|