Files
novelmaster/noma/scripts/__init__.py
T
2026-06-23 20:29:02 +08:00

20 lines
346 B
Python

"""
NovelMaster (noma) scripts package
This package contains all Python scripts for the NovelMaster plugin.
"""
__version__ = "5.5.4"
__author__ = "lcy"
# Expose main modules
from . import security_utils
from . import project_locator
from . import chapter_paths
__all__ = [
"security_utils",
"project_locator",
"chapter_paths",
]