Files
ops-assistant/internal/core/ports/channel.go
2026-03-19 21:23:28 +08:00

15 lines
255 B
Go

package ports
type UnifiedMessage struct {
Channel string
OperatorID int64
Text string
RawID string
}
type ChannelAdapter interface {
Name() string
Normalize(any) (*UnifiedMessage, error)
Reply(targetID string, text string) error
}