(content string)
| 283 | } |
| 284 | |
| 285 | func ImplicitUserMessage(content string) *Message { |
| 286 | return ImplicitUserMessageAt(time.Now(), content) |
| 287 | } |
| 288 | |
| 289 | // ImplicitUserMessageAt is like ImplicitUserMessage but stamps the message with |
| 290 | // an explicit creation time, letting callers (and tests) avoid the wall clock. |
no test coverage detected