WritePlain writes the plain text into writer without any handling.
(plainText string)
| 348 | |
| 349 | // WritePlain writes the plain text into writer without any handling. |
| 350 | func (ctx *RestoreCtx) WritePlain(plainText string) { |
| 351 | fmt.Fprint(ctx.In, plainText) |
| 352 | } |
| 353 | |
| 354 | // WritePlainf write the plain text into writer without any handling. |
| 355 | func (ctx *RestoreCtx) WritePlainf(format string, a ...interface{}) { |
no outgoing calls