Files
gateway-telegram/internal/domain/port/message_gateway.go

9 lines
183 B
Go

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