package matrix import ( "path/filepath" "github.com/sipeed/picoclaw/pkg/bus" "github.com/sipeed/picoclaw/pkg/channels" "github.com/sipeed/picoclaw/pkg/config" ) func init() { channels.RegisterFactory("matrix", func(cfg *config.Config, b *bus.MessageBus) (channels.Channel, error) { matrixCfg := cfg.Channels.Matrix cryptoDatabasePath := matrixCfg.CryptoDatabasePath if cryptoDatabasePath == "" { cryptoDatabasePath = filepath.Join(cfg.WorkspacePath(), "matrix") } return NewMatrixChannel(matrixCfg, b, cryptoDatabasePath) }) }