mirror of
https://github.com/nushell/nushell
synced 2025-01-06 02:09:10 +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,
|
|
}
|