Skip to content
Snippets Groups Projects
scheduler.py 127 B
import sys

from iotAmak.scheduler import Scheduler

if __name__ == '__main__':
    a = Scheduler(str(sys.argv[1]))
    a.run()