"""BidMaster CLI 入口点""" from src.bidmaster.cli.main import cli def main(): """主入口函数""" cli() if __name__ == "__main__": main()