git-batch/gitbatch/__main__.py

13 lines
147 B
Python
Raw Normal View History

2019-11-29 13:45:28 +00:00
#!/usr/bin/env python3
2019-11-29 13:57:55 +00:00
"""Main program."""
2019-11-29 13:45:28 +00:00
2019-12-02 08:53:35 +00:00
from gitbatch.Cli import GitBatch
2019-11-29 13:45:28 +00:00
def main():
2019-12-02 08:53:35 +00:00
GitBatch()
2019-11-29 13:45:28 +00:00
if __name__ == "__main__":
main()