// Copyright 2023 GoEdge CDN goedge.cdn@gmail.com. All rights reserved. Official site: https://goedge.cn . //go:build plus package smssenders type SenderInterface interface { // Init 初始化 Init(params any) error // Send 发送短信 Send(mobile string, body string, code string) (resp string, isOk bool, err error) }