vRp.CD2g_test/notify/notify.go

8 lines
136 B
Go

package notify
// Notify 通用通知接口定义
type Notify interface {
// Format 格式化通知内容
Format() (string, error)
}