8 lines
138 B
Python
8 lines
138 B
Python
from app import control_relays
|
|
import time
|
|
|
|
if __name__ == '__main__':
|
|
while True:
|
|
control_relays.run()
|
|
time.sleep(1)
|