diff --git a/Cargo.toml b/Cargo.toml index 5f1d422..d03ef91 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,3 +6,4 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] +dotenv-parser = "0.1.3" diff --git a/src/main.rs b/src/main.rs index e7a11a9..adacdee 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,3 +1,4 @@ +use gayfetch::get_os; fn main() { - println!("Hello, world!"); + get_os() }