7 lines
76 B
Rust
7 lines
76 B
Rust
use dotenvy::dotenv;
|
|
|
|
#[tokio::main]
|
|
async fn main() {
|
|
dotenv().ok();
|
|
}
|