mirror of
https://github.com/nushell/nushell.git
synced 2025-05-01 16:44:27 +02:00
11 lines
143 B
Rust
11 lines
143 B
Rust
use crate::data::Value;
|
|
|
|
#[derive(Debug)]
|
|
pub enum LogLevel {}
|
|
|
|
#[derive(Debug)]
|
|
pub struct LogItem {
|
|
level: LogLevel,
|
|
value: Value,
|
|
}
|