First commit

This commit is contained in:
Mike 2019-02-27 15:10:35 -08:00
parent 2d8e462259
commit c81f1e243d
1 changed files with 22 additions and 0 deletions

22
backup-rotator Normal file
View File

@ -0,0 +1,22 @@
#!/usr/env python3
class BackupRotator:
def __init__(self):
pass
def run(self):
print("YAY")
def main():
rotator = BackupRotator()
rotator.run()
if __name__ == "__main__":
main()