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