feat: add send phone code

This commit is contained in:
2025-12-20 13:37:20 +08:00
parent 12aa7a404a
commit 3f716b669c
5 changed files with 164 additions and 22 deletions

View File

@@ -54,6 +54,9 @@ func Provide(opts ...opt.Option) error {
}
if err := container.Container.Provide(func() (*users, error) {
obj := &users{}
if err := obj.Prepare(); err != nil {
return nil, err
}
return obj, nil
}); err != nil {