mirror of
https://github.com/kristoferssolo/traxor.git
synced 2026-01-14 20:46:14 +00:00
12 lines
274 B
Rust
12 lines
274 B
Rust
use filecaster::FromFile;
|
|
|
|
#[derive(Debug, Clone, FromFile)]
|
|
pub struct LogConfig {
|
|
#[from_file(default = "warn")]
|
|
pub traxor: String,
|
|
#[from_file(default = "warn")]
|
|
pub ratatui: String,
|
|
#[from_file(default = "warn")]
|
|
pub transmission_rpc: String,
|
|
}
|