(instruction Instruction)
| 131 | } |
| 132 | |
| 133 | func ToEnvVars(instruction Instruction) []string { |
| 134 | return []string{ |
| 135 | fmt.Sprintf("%s=%d", DaemonKindEnvKey, instruction.Kind()), |
| 136 | fmt.Sprintf("%s=%s", DaemonInstructionEnvKey, instruction.SerializedInstructions()), |
| 137 | } |
| 138 | } |
| 139 | |
| 140 | type ExitImmediatelyInstruction struct{} |
| 141 |
no test coverage detected