feat: update

This commit is contained in:
Rogee
2025-05-23 23:42:27 +08:00
parent 409a2e8304
commit 1166a5c949
17 changed files with 751 additions and 514 deletions

View File

@@ -51,9 +51,9 @@ func (s *UsersTestSuite) Test_Create() {
Balance: 1000,
}
u, err := user.Create(context.TODO())
err := user.Create(context.TODO())
So(err, ShouldBeNil)
So(u, ShouldNotBeNil)
So(u.ID, ShouldNotBeZeroValue)
So(user, ShouldNotBeNil)
So(user.ID, ShouldNotBeZeroValue)
})
}