(ctx context.Context, content string, allowMajor, verbose bool, coolDown time.Duration)
| 686 | type skillRefUpdateResolver func(ctx context.Context, repo, currentRef string, allowMajor, verbose bool, coolDown time.Duration) (string, error) |
| 687 | |
| 688 | func updateSkillRefsInContent(ctx context.Context, content string, allowMajor, verbose bool, coolDown time.Duration) (bool, string, error) { |
| 689 | return updateSkillRefsInContentWithResolver(ctx, content, allowMajor, verbose, coolDown, resolveLatestRef) |
| 690 | } |
| 691 | |
| 692 | func updateSkillRefsInContentWithResolver( |
| 693 | ctx context.Context, |
no test coverage detected