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

17 lines
319 B
Go

//go:build omit_qq
package channels
import (
"github.com/YspCoder/clawgo/pkg/bus"
"github.com/YspCoder/clawgo/pkg/config"
)
type QQChannel struct{ disabledChannel }
const qqCompiled = false
func NewQQChannel(cfg config.QQConfig, bus *bus.MessageBus) (*QQChannel, error) {
return nil, errChannelDisabled("qq")
}