(
ctx context.Context,
src *core.ModuleSource,
args struct{},
)
| 1155 | } |
| 1156 | |
| 1157 | func (s *moduleSourceSchema) moduleSourceDigest( |
| 1158 | ctx context.Context, |
| 1159 | src *core.ModuleSource, |
| 1160 | args struct{}, |
| 1161 | ) (string, error) { |
| 1162 | digestForSDK, err := src.SourceImplementationDigest(ctx) |
| 1163 | if err != nil { |
| 1164 | return "", err |
| 1165 | } |
| 1166 | return digestForSDK.String(), nil |
| 1167 | } |
| 1168 | |
| 1169 | func (s *moduleSourceSchema) moduleSourceRebasedIncludePaths( |
| 1170 | ctx context.Context, |
nothing calls this directly
no test coverage detected