(ctx context.Context, userID string)
| 55 | } |
| 56 | |
| 57 | func (t traced) GetRulesConfig(ctx context.Context, userID string) (cfg userconfig.VersionedRulesConfig, err error) { |
| 58 | defer func() { t.trace("GetRulesConfig", userID, cfg, err) }() |
| 59 | return t.d.GetRulesConfig(ctx, userID) |
| 60 | } |
| 61 | |
| 62 | func (t traced) SetRulesConfig(ctx context.Context, userID string, oldCfg, newCfg userconfig.RulesConfig) (updated bool, err error) { |
| 63 | defer func() { t.trace("SetRulesConfig", userID, oldCfg, newCfg, updated, err) }() |
nothing calls this directly
no test coverage detected