echo icon indicating copy to clipboard operation
echo copied to clipboard

Modernize remaining interface{} to any in context.go

Open vishr opened this issue 4 months ago • 0 comments

Summary

Completes the modernization of context.go by replacing all remaining interface{} types with any.

Changes:

  • Updated Context interface method signatures (23 occurrences)
  • Updated implementation method signatures
  • Methods affected: Get, Set, Bind, Validate, Render, JSON*, XML*, JSONP

Benefits:

  • Improved code readability
  • Follows Go 1.18+ best practices
  • Consistent with modern Go codebases

Test plan

  • [x] All existing tests pass
  • [x] Linting passes
  • [x] No behavioral changes

🤖 Generated with Claude Code

vishr avatar Sep 16 '25 03:09 vishr