aboutsummaryrefslogtreecommitdiff
path: root/scenarios/garage-s3lat
blob: c9dd6956a7d60f8d6a895111925dafbeb1d97196 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env python3
from fragments import garage, s3lat, shared

if shared.id() == 1:
    garage.deploy_coord()
    s3lat.on_garage()
    garage.delete_key()
    garage.destroy()
else:
    garage.deploy_follow()
    garage.sync_on_key_down()
    garage.destroy()
shared.log("bye")