(t string, title string, content string, values []interface{})
| 16 | ) |
| 17 | |
| 18 | func NewNotify(t string, title string, content string, values []interface{}) Notify { |
| 19 | return Notify{ |
| 20 | Type: t, |
| 21 | Title: title, |
| 22 | Content: content, |
| 23 | Values: values, |
| 24 | } |
| 25 | } |
no outgoing calls
no test coverage detected