package port import "context" type MessageGateway interface { SendText(ctx context.Context, chatID int64, text string) error SendTyping(ctx context.Context, chatID int64) error }