(ctx context.Context, userID string)
| 45 | } |
| 46 | |
| 47 | func (t traced) RestoreConfig(ctx context.Context, userID string) (err error) { |
| 48 | defer func() { t.trace("RestoreConfig", userID, err) }() |
| 49 | return t.d.RestoreConfig(ctx, userID) |
| 50 | } |
| 51 | |
| 52 | func (t traced) Close() (err error) { |
| 53 | defer func() { t.trace("Close", err) }() |
nothing calls this directly
no test coverage detected