Robbi Ibadi

Results 2 comments of Robbi Ibadi

Add this into your test file ``` type AnyTime struct{} func (a AnyTime) Match(v driver.Value) bool { _, ok := v.(time.Time) return ok } ``` and replace your data time.now()...

Thank you for your response, @Umang01-hash My use case is that after receiving a callback from Google as an authentication provider, I want to create a user in the backend...