nolint:exhaustruct
| 59 | var _ source.Source = sourceRepo{} //nolint:exhaustruct |
| 60 | |
| 61 | type sourceRepo struct { |
| 62 | log *slog.Logger |
| 63 | repo Repo |
| 64 | } |
| 65 | |
| 66 | func (r sourceRepo) ConfigHash() string { |
| 67 | return r.repo.Hash() |
nothing calls this directly
no outgoing calls
no test coverage detected