├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── public ├── features.gif └── showcase.gif └── src ├── backend.rs ├── content_parser.rs ├── content_parser └── jsoncontentparser.rs ├── dependency_builder.rs ├── main.rs ├── scraper.rs ├── tui.rs ├── tui ├── handler.rs └── tui.rs ├── utils.rs ├── view.rs └── view ├── app.rs └── widgets.rs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josueBarretogit/get_blessed_rs/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josueBarretogit/get_blessed_rs/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josueBarretogit/get_blessed_rs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josueBarretogit/get_blessed_rs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josueBarretogit/get_blessed_rs/HEAD/README.md -------------------------------------------------------------------------------- /public/features.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josueBarretogit/get_blessed_rs/HEAD/public/features.gif -------------------------------------------------------------------------------- /public/showcase.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josueBarretogit/get_blessed_rs/HEAD/public/showcase.gif -------------------------------------------------------------------------------- /src/backend.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josueBarretogit/get_blessed_rs/HEAD/src/backend.rs -------------------------------------------------------------------------------- /src/content_parser.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josueBarretogit/get_blessed_rs/HEAD/src/content_parser.rs -------------------------------------------------------------------------------- /src/content_parser/jsoncontentparser.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josueBarretogit/get_blessed_rs/HEAD/src/content_parser/jsoncontentparser.rs -------------------------------------------------------------------------------- /src/dependency_builder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josueBarretogit/get_blessed_rs/HEAD/src/dependency_builder.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josueBarretogit/get_blessed_rs/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/scraper.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josueBarretogit/get_blessed_rs/HEAD/src/scraper.rs -------------------------------------------------------------------------------- /src/tui.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josueBarretogit/get_blessed_rs/HEAD/src/tui.rs -------------------------------------------------------------------------------- /src/tui/handler.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josueBarretogit/get_blessed_rs/HEAD/src/tui/handler.rs -------------------------------------------------------------------------------- /src/tui/tui.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josueBarretogit/get_blessed_rs/HEAD/src/tui/tui.rs -------------------------------------------------------------------------------- /src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josueBarretogit/get_blessed_rs/HEAD/src/utils.rs -------------------------------------------------------------------------------- /src/view.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josueBarretogit/get_blessed_rs/HEAD/src/view.rs -------------------------------------------------------------------------------- /src/view/app.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josueBarretogit/get_blessed_rs/HEAD/src/view/app.rs -------------------------------------------------------------------------------- /src/view/widgets.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josueBarretogit/get_blessed_rs/HEAD/src/view/widgets.rs --------------------------------------------------------------------------------