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