(ctx context.Context, db database.Store, userID uuid.UUID, schedule string)
| 47 | } |
| 48 | |
| 49 | func (m MockUserQuietHoursScheduleStore) Set(ctx context.Context, db database.Store, userID uuid.UUID, schedule string) (UserQuietHoursScheduleOptions, error) { |
| 50 | if m.SetFn != nil { |
| 51 | return m.SetFn(ctx, db, userID, schedule) |
| 52 | } |
| 53 | |
| 54 | return NewAGPLUserQuietHoursScheduleStore().Set(ctx, db, userID, schedule) |
| 55 | } |
nothing calls this directly
no test coverage detected