Starting to stub out some classes.

This commit is contained in:
Michael DeHaan
2014-10-15 15:53:43 -07:00
parent a707f5acfe
commit 6ca67c61cb
6 changed files with 107 additions and 0 deletions

View File

@@ -14,3 +14,15 @@
#
# You should have received a copy of the GNU General Public License
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
class TaskExecutor(object):
def __init__(self, task, host):
pass
def run(self):
# returns TaskResult
pass