feat: update go module, add recharge wechat
Some checks failed
build quyun / Build (push) Failing after 12m45s

This commit is contained in:
2025-12-04 11:47:37 +08:00
parent b678ef1f9e
commit bc495544c8
10 changed files with 72 additions and 58 deletions

View File

@@ -2,6 +2,7 @@ package http
import (
"quyun/providers/ali"
"quyun/providers/app"
"quyun/providers/job"
"quyun/providers/jwt"
"quyun/providers/wechat"
@@ -44,11 +45,13 @@ func Provide(opts ...opt.Option) error {
job *job.Job,
oss *ali.OSSClient,
wepay *wepay.Client,
appConfig *app.Config,
) (*posts, error) {
obj := &posts{
job: job,
oss: oss,
wepay: wepay,
app: appConfig,
}
return obj, nil