2
"""Keeps all workflows specific to maya
4
:note: ``createWorkflow`` method must be supported in a module keeping workflows
5
:todo: it would be better to have the createWorkflow method in some sort of workflowManager,
6
for now that appears like overkill though
8
__docformat__ = "restructuredtext"
10
from mrv.path import make_path
11
_this_module = __import__( "mrv.automation.workflows", globals(), locals(), ['workflows'] )
13
import mrv.automation.processes
17
import mrv.automation.base as common
19
# load all workflows at once
20
common.addWorkflowsFromDotFiles( _this_module, make_path( __file__ ).parent().glob( "*.dot" ) )