GitHub Message is an application that uses the GitHub API to display the messages one user received on GitHub b in the terminal. You can set different filters or search for a specific term.
Documentation here...
The documentation is here...
The info for that is here...
For this project I used the lib dotenvy
for .env
environment variables.
use dotenvy::dotenv;
fn get_vars() {
// load vars from .env file
dotenv().ok();
// get one var by name
let test = dotenvy::var("TEST");
// match the result
match test {
Ok(test) => println!(test),
Err(_) => println!("test not set")
}
}
If you have an idea or see a bug or a best practice missed feel free to make a PR, I am eager to learn :D!