First commit
This commit is contained in:
parent
2d8e462259
commit
c81f1e243d
22
backup-rotator
Normal file
22
backup-rotator
Normal 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()
|
Loading…
Reference in New Issue
Block a user