feat: update

This commit is contained in:
yanghao05
2025-04-30 14:41:46 +08:00
parent 070bec536b
commit be605ef603
6 changed files with 81 additions and 10 deletions

View File

@@ -80,5 +80,16 @@ func Provide(opts ...opt.Option) error {
}); err != nil {
return err
}
if err := container.Container.Provide(func(
wechat *wechat.Client,
) (*wechats, error) {
obj := &wechats{
wechat: wechat,
}
return obj, nil
}); err != nil {
return err
}
return nil
}