voucher/internal/biz/mixrepos/ding.go

9 lines
193 B
Go

package mixrepos
import "context"
type DingMixRepo interface {
SendMessage(_ context.Context, title, text string) error
SendMarkdownMessage(ctx context.Context, title, text string) error
}