refactor(document): move document domain core to document/ package

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Marcel
2026-05-05 12:39:20 +02:00
parent bb7d872a61
commit e85057bed2
2371 changed files with 385726 additions and 1971 deletions

View File

@@ -0,0 +1,15 @@
"""SpellChecker Module"""
from spellchecker.info import ( # noqa: F401
__author__,
__bugtrack_url__,
__credits__,
__email__,
__license__, # noqa: F401
__maintainer__,
__url__,
__version__,
)
from spellchecker.spellchecker import SpellChecker, WordFrequency
__all__ = ["SpellChecker", "WordFrequency"]