summaryrefslogtreecommitdiff
path: root/jobs/JobSpawner.py
blob: 6e2c636f74c58bc6bdaee314f0af81edafa974fd (plain)
1
2
3
4
5
6
7
8
#!/usr/bin/env python

from builtins import object
class JobSpawner(object):
    """OVERRIDE ME
       Returns an array (or using 'yield') of Job objects to run"""
    def get_sub_jobs(self, config):
        pass