picoclaw/pkg/channels/telegram/init.go
google-labs-jules[bot] 55a15ff8d6 feat: Add Alpaca Financial Persona Integration
Co-authored-by: hobbyistlabs-coder <267281733+hobbyistlabs-coder@users.noreply.github.com>
2026-03-13 08:20:53 +00:00

13 lines
252 B
Go

package telegram
import (
"jane/pkg/bus"
"jane/pkg/channels"
"jane/pkg/config"
)
func init() {
channels.RegisterFactory("telegram", func(cfg *config.Config, b *bus.MessageBus) (channels.Channel, error) {
return NewTelegramChannel(cfg, b)
})
}