Files
gochat/internal/channel/provider/facebook.go
T
2026-06-04 15:44:48 +08:00

14 lines
410 B
Go

package provider
// Facebook provider registration.
// Registers the Facebook Messenger ChannelProvider with the global channel registry.
// Reference: Chatwoot registers Channel::FacebookPage in config/initializers/channels.rb
import (
"github.com/gochat/gochat/internal/channel"
"github.com/gochat/gochat/internal/channel/facebook"
)
func init() {
channel.MustRegister(facebook.NewFacebookProvider())
}