package wf.servitor.common.workflow.step import wf.servitor.common.workflow.Step class ActionStep(val `do`: String, override val name: String) : Step { override fun getScript() = `do` }