LinkContent set link notification
(link string)
| 43 | |
| 44 | // LinkContent set link notification |
| 45 | func (m *Message) LinkContent(link string) *Message { |
| 46 | ctx := &pb.MsgContent{ |
| 47 | Type: pb.MsgType_Link, |
| 48 | Link: link, |
| 49 | } |
| 50 | m.Content, _ = proto.Marshal(ctx) |
| 51 | return m |
| 52 | } |
| 53 | |
| 54 | // TimelineContent set timeline notification |
| 55 | func (m *Message) TimelineContent(code string, title string, ts *time.Time, items []*MsgTimeItem) *Message { |
no test coverage detected