Skip to content

Latest commit

 

History

History
12 lines (10 loc) · 407 Bytes

File metadata and controls

12 lines (10 loc) · 407 Bytes

Stars & Age Filtering Implementation

Steps:

  • 1. Add flags to cmd/root.go: stars int, age string
  • 2. Update query build in cmd/root.go to include stars/age
  • 3. Update README.md usage/examples
  • 4. go mod tidy (prior)
  • 5. go build ./... (success)
  • 6. Test: Works! e.g. --stars 100 --age week → filtered results
  • 7. attempt_completion

Current: Starting step 1.