git-batch/gitbatch/__main__.py

13 lines
147 B
Python
Raw Normal View History

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