23 lines
206 B
Python
23 lines
206 B
Python
#!/usr/env python3
|
|
|
|
|
|
class BackupRotator:
|
|
|
|
def __init__(self):
|
|
|
|
pass
|
|
|
|
def run(self):
|
|
|
|
print("YAY")
|
|
|
|
|
|
def main():
|
|
|
|
rotator = BackupRotator()
|
|
rotator.run()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|