16 lines
558 B
Go
16 lines
558 B
Go
package chapa
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/SamuelTariku/FortuneBet-Backend/internal/domain"
|
|
)
|
|
|
|
type ChapaPort interface {
|
|
HandleChapaTransferWebhook(ctx context.Context, req domain.ChapaWebHookTransfer) error
|
|
HandleChapaPaymentWebhook(ctx context.Context, req domain.ChapaWebHookPayment) error
|
|
WithdrawUsingChapa(ctx context.Context, userID int64, req domain.ChapaWithdrawRequest) error
|
|
DepositUsingChapa(ctx context.Context, userID int64, req domain.ChapaDepositRequest) (string, error)
|
|
GetSupportedBanks() ([]domain.ChapaSupportedBank, error)
|
|
}
|