(w io.Writer, key, value string)
| 84 | |
| 85 | type bashWriter struct{} |
| 86 | |
| 87 | func (bashWriter) ExportEnvironmentVariable(w io.Writer, key, value string) (int, error) { |
| 88 | return fmt.Fprintf(w, "export %s=%s\n", key, value) |
| 89 | } |
| 90 | |
| 91 | type powershellWriter struct{} |
nothing calls this directly
no outgoing calls
no test coverage detected