feat(feishu): add StartTyping stub for 32-bit architecture
This commit is contained in:
parent
97fbdf4107
commit
3ad8edcdec
1 changed files with 5 additions and 0 deletions
|
|
@ -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")
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue