forked from extern/nushell
a74d05061d
* Begin directory contrib docs and split commands * Fix unused import warning
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,
|
|
}
|