#!/usr/bin/env python3 """ Todo List 主程序入口 """ from todo.cli import CLI def main(): """主函数""" cli = CLI() cli.run() if __name__ == "__main__": main()