basic ass os detection

This commit is contained in:
SadlyNotSappho 2023-03-10 12:31:05 -08:00
parent 20fd2a3083
commit 040722c858
2 changed files with 3 additions and 1 deletions

View File

@ -6,3 +6,4 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies] [dependencies]
dotenv-parser = "0.1.3"

View File

@ -1,3 +1,4 @@
use gayfetch::get_os;
fn main() { fn main() {
println!("Hello, world!"); get_os()
} }