mirror of
https://github.com/trafficlunar/computer-statistics.git
synced 2026-06-27 22:24:09 +00:00
feat: add dotenvy
This commit is contained in:
parent
dbf616ab18
commit
f2145c34b2
5 changed files with 20 additions and 1 deletions
|
|
@ -1,3 +1,9 @@
|
|||
fn main() {
|
||||
use std::error::Error;
|
||||
|
||||
fn main() -> Result<(), Box<dyn Error>> {
|
||||
dotenvy::dotenv()?;
|
||||
|
||||
println!("Hello, world!");
|
||||
|
||||
Ok(())
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue