forked from Deuxfleurs/mknet
12 lines
266 B
Python
Executable file
12 lines
266 B
Python
Executable file
#!/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()
|