Files
config-man/main.py

13 lines
273 B
Python
Raw Permalink 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
"""
Config-Man CLI 工具入口点
用于管理存储在对象存储中的加密静态资源配置文件。
支持多版本管理通过Cloudflare CDN进行分发。
"""
from config_man.cli.main import main
if __name__ == "__main__":
main()