mirror of
https://github.com/danbulant/nushell
synced 2026-06-13 11:41:49 +00:00
10 lines
143 B
Rust
10 lines
143 B
Rust
use crate::data::Value;
|
|
|
|
#[derive(Debug)]
|
|
pub enum LogLevel {}
|
|
|
|
#[derive(Debug)]
|
|
pub struct LogItem {
|
|
level: LogLevel,
|
|
value: Value,
|
|
}
|