feat: initial commit
This commit is contained in:
8
internal/domain/port/message_gateway.go
Normal file
8
internal/domain/port/message_gateway.go
Normal file
@@ -0,0 +1,8 @@
|
||||
package port
|
||||
|
||||
import "context"
|
||||
|
||||
type MessageGateway interface {
|
||||
SendText(ctx context.Context, chatID int64, text string) error
|
||||
SendTyping(ctx context.Context, chatID int64) error
|
||||
}
|
||||
Reference in New Issue
Block a user