Files
clawgo/pkg/channels/feishu_stub.go
2026-03-10 14:46:34 +08:00

17 lines
347 B
Go

//go:build omit_feishu
package channels
import (
"github.com/YspCoder/clawgo/pkg/bus"
"github.com/YspCoder/clawgo/pkg/config"
)
type FeishuChannel struct{ disabledChannel }
const feishuCompiled = false
func NewFeishuChannel(cfg config.FeishuConfig, bus *bus.MessageBus) (*FeishuChannel, error) {
return nil, errChannelDisabled("feishu")
}