forked from ebhomengo/niki
6 lines
93 B
Go
6 lines
93 B
Go
|
package smscontract
|
||
|
|
||
|
type SmsAdapter interface {
|
||
|
Send(phoneNumber string, message string)
|
||
|
}
|