2021-07-11 03:03:32 +00:00
|
|
|
# © lambda#0987 <lambda@lambda.dance>
|
|
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
2018-07-30 04:34:27 +00:00
|
|
|
|
|
|
|
from .misc import *
|
2019-08-04 10:15:15 +00:00
|
|
|
from . import archive
|
2018-07-30 04:34:27 +00:00
|
|
|
from . import emote
|
|
|
|
from . import errors
|
2018-07-30 05:43:30 +00:00
|
|
|
from . import paginator
|
|
|
|
# note: do not import .image in case the user doesn't want it
|
|
|
|
# since importing image can take a long time.
|
2021-07-07 04:02:41 +00:00
|
|
|
# Do not import .emote_client, either, because otherwise running python -m utils.image
|
|
|
|
# will cause utils.image to appear in sys.modules after import of package 'utils' but
|
|
|
|
# prior to execution of 'utils.image' which may result in unpredictable behavior.
|