mirror of
https://github.com/nushell/nushell.git
synced 2025-06-04 00:56:11 +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,
|
|
}
|