9 lines
183 B
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
|
|
}
|