mirror of
https://github.com/thegeeklab/docker-tidy.git
synced 2024-11-15 01:00:42 +00:00
13 lines
153 B
Python
13 lines
153 B
Python
#!/usr/bin/env python3
|
|
"""Main program."""
|
|
|
|
from dockertidy.Cli import DockerTidy
|
|
|
|
|
|
def main():
|
|
DockerTidy()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|