Files
Viper_TemplateProject/StubGen.py
2026-07-18 19:25:40 +08:00

11 lines
378 B
Python
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
#!/usr/bin/env python3
"""StubGen - C/H/Py 文件到 Python 存根文件生成器(工程化版本)"""
import lib._bootstrap # noqa: F401 设置 sys.path项目根 + lib/includes
from lib.StubGen import StubGenConfig, PythonToStubConverter, StubGen, main
__all__ = ['StubGenConfig', 'PythonToStubConverter', 'StubGen', 'main']
if __name__ == '__main__':
main()