12 lines
192 B
Rust
12 lines
192 B
Rust
|
use std::path::PathBuf;
|
||
|
|
||
|
pub fn config() -> Configuration {
|
||
|
Configuration {
|
||
|
env: dotenvy::dotenv(),
|
||
|
}
|
||
|
}
|
||
|
|
||
|
pub struct Configuration {
|
||
|
env: Result<PathBuf, dotenvy::Error>,
|
||
|
}
|