MCPcopy Create free account
hub / github.com/GoSimplicity/LinkMe / smsRepository

Struct smsRepository

internal/repository/sms.go:36–41  ·  view source on GitHub ↗

smsRepository 实现了 SmsRepository 接口

Source from the content-addressed store, hash-verified

34
35// smsRepository 实现了 SmsRepository 接口
36type smsRepository struct {
37 dao dao.SmsDAO
38 cache cache.SMSCache
39 l *zap.Logger
40 client *sms.TencentSms //Todo 完成多个sms的集成
41}
42
43// NewSmsRepository 创建并返回一个新的 smsRepository 实例
44func NewSmsRepository(dao dao.SmsDAO, cache cache.SMSCache, l *zap.Logger, client *sms.TencentSms) SmsRepository {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected