feat(feishu): add StartTyping stub for 32-bit architecture

This commit is contained in:
wynnmeng 2026-02-27 14:28:09 +08:00
parent 97fbdf4107
commit 3ad8edcdec

View file

@ -37,3 +37,8 @@ func (c *FeishuChannel) Stop(ctx context.Context) error {
func (c *FeishuChannel) Send(ctx context.Context, msg bus.OutboundMessage) error {
return errors.New("feishu channel is not supported on 32-bit architectures")
}
// StartTyping is a stub method to satisfy the TypingCapable interface
func (c *FeishuChannel) StartTyping(ctx context.Context, chatID string) (func(), error) {
return func() {}, errors.New("feishu channel is not supported on 32-bit architectures")
}