mirror of
https://github.com/nushell/nushell.git
synced 2025-04-16 09:18:21 +02:00
11 lines
143 B
Rust
11 lines
143 B
Rust
use nu_protocol::Value;
|
|
|
|
#[derive(Debug)]
|
|
pub enum LogLevel {}
|
|
|
|
#[derive(Debug)]
|
|
pub struct LogItem {
|
|
level: LogLevel,
|
|
value: Value,
|
|
}
|