(w io.Writer, value string)
| 280 | } |
| 281 | |
| 282 | func warnSuspiciousTrailingNewline(w io.Writer, value string) { |
| 283 | if !hasSuspiciousTrailingNewline(value) { |
| 284 | return |
| 285 | } |
| 286 | |
| 287 | cliui.Warn(w, "secret value from stdin ends with a trailing newline") |
| 288 | } |
| 289 | |
| 290 | type secretListRow struct { |
| 291 | codersdk.UserSecret `table:"-"` |