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