12 lines
139 B
Go
12 lines
139 B
Go
package sms
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
type Service interface {
|
|
Send(ctx context.Context, phone, msg string) error
|
|
}
|
|
|
|
// todo实现发短信
|