gitextract_v95nv04n/ ├── .github/ │ └── workflows/ │ ├── build.yml │ └── release.yml ├── .gitignore ├── .goreleaser.yaml ├── LICENSE.txt ├── README.md ├── client/ │ ├── cache/ │ │ ├── commentsCache.go │ │ ├── comments_cache_test.go │ │ ├── postsCache.go │ │ └── posts_cache_test.go │ ├── client.go │ ├── comments/ │ │ ├── commentsClient.go │ │ └── commentsParser.go │ ├── common/ │ │ ├── errors.go │ │ └── html.go │ ├── posts/ │ │ ├── postsClient.go │ │ └── postsParser.go │ └── url.go ├── components/ │ ├── colors/ │ │ └── colors.go │ ├── comments/ │ │ ├── commentsPage.go │ │ ├── header.go │ │ ├── keys.go │ │ ├── pager.go │ │ └── styles.go │ ├── messages/ │ │ └── messages.go │ ├── modal/ │ │ ├── error.go │ │ ├── modal.go │ │ ├── quit.go │ │ ├── render.go │ │ ├── search.go │ │ ├── spinner.go │ │ └── subredditList.go │ ├── posts/ │ │ ├── header.go │ │ ├── keys.go │ │ ├── postsPage.go │ │ └── styles.go │ ├── styles/ │ │ └── style.go │ └── tui.go ├── config/ │ ├── config.go │ └── defaultConfig.go ├── go.mod ├── go.sum ├── install.sh ├── integ_test.go ├── justfile ├── main.go ├── model/ │ ├── commentsModel.go │ └── postModel.go ├── uninstall.sh └── utils/ ├── browser.go ├── files.go ├── logger.go ├── timer.go ├── utils.go └── utils_test.go