feat: initial commit

This commit is contained in:
2026-06-23 20:29:02 +08:00
commit ea8f6066c4
217 changed files with 60754 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
"""
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",
]