smpp-otp/internal/infrastructure/interfaces/smpp.go

8 lines
133 B
Go

package smpp
import "smpp-otp/internal/config"
type SMPPClient interface {
SendSMS(cfg *config.Config, dest, text string) error
}