(content string)
| 319 | } |
| 320 | |
| 321 | func SystemMessage(content string) *Message { |
| 322 | return SystemMessageAt(time.Now(), content) |
| 323 | } |
| 324 | |
| 325 | // SystemMessageAt is like SystemMessage but stamps the message with an explicit |
| 326 | // creation time, letting callers (and tests) avoid the wall clock. |
no test coverage detected