(ctx context.Context, userID string, oldCfg, newCfg userconfig.RulesConfig)
| 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) }() |
| 64 | return t.d.SetRulesConfig(ctx, userID, oldCfg, newCfg) |
| 65 | } |
| 66 | |
| 67 | func (t traced) GetAllRulesConfigs(ctx context.Context) (cfgs map[string]userconfig.VersionedRulesConfig, err error) { |
| 68 | defer func() { t.trace("GetAllRulesConfigs", cfgs, err) }() |
nothing calls this directly
no test coverage detected