10 lines
192 B
Python
10 lines
192 B
Python
from agent import *
|
|
import logging
|
|
from os import getenv
|
|
import time
|
|
|
|
Setup.create_symlink()
|
|
composer = Composer(getenv("REMOTE_REPO"))
|
|
while True:
|
|
schedule.run_pending()
|
|
time.sleep(1) |