mirror of
https://github.com/thegeeklab/git-batch.git
synced 2024-11-16 08:10:38 +00:00
13 lines
147 B
Python
13 lines
147 B
Python
#!/usr/bin/env python3
|
|
"""Main program."""
|
|
|
|
from gitbatch.Cli import GitBatch
|
|
|
|
|
|
def main():
|
|
GitBatch()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|