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

8 lines
133 B
Go
Raw Normal View History

2024-03-28 11:00:22 +00:00
package smpp
import "smpp-otp/internal/config"
type SMPPClient interface {
SendSMS(cfg *config.Config, dest, text string) error
}