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