user/pkg/sms/sms.go
timerzz e7e3309896 优化Docker构建流程
- 添加UPX压缩步骤减小可执行文件体积
- 使用多阶段构建减小最终镜像大小
- 更新基础镜像到最新版本
2025-04-22 17:30:36 +08:00

12 lines
139 B
Go

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