major: rework mail to send mail as plaintext instead of html, preventing the bleed-in of html text
23 lines
630 B
Python
23 lines
630 B
Python
__all__ = [
|
|
"AdminCommands",
|
|
"AutoAdder",
|
|
"AvailChecker",
|
|
"BookGrabber",
|
|
"Database",
|
|
"DocumentationThread",
|
|
"NewEditionCheckerThread",
|
|
"recreateElsaFile",
|
|
"recreateFile",
|
|
"Catalogue",
|
|
]
|
|
|
|
from .admin_console import AdminCommands
|
|
from .catalogue import Catalogue
|
|
from .create_file import recreateElsaFile, recreateFile
|
|
from .database import Database
|
|
from .documentation_thread import DocumentationThread
|
|
from .thread_bookgrabber import BookGrabber
|
|
from .thread_neweditions import NewEditionCheckerThread
|
|
from .threads_autoadder import AutoAdder
|
|
from .threads_availchecker import AvailChecker
|