#!/usr/bin/env python3 """Main program.""" from cleanupagents.Cli import AgentCleanup def main(): AgentCleanup() if __name__ == "__main__": main()