mirror of
https://github.com/nushell/nushell.git
synced 2025-01-14 10:18:14 +01:00
2f44801414
# Description Provides the ability convert from and to plist format. <img width="1250" alt="Screenshot 2024-08-05 at 10 21 26" src="https://github.com/user-attachments/assets/970f3366-eb70-4d74-a396-649374556f66"> <img width="730" alt="Screenshot 2024-08-05 at 10 22 38" src="https://github.com/user-attachments/assets/6ec317d0-686e-47c6-bf35-8ab6e5d802db"> # User-Facing Changes - Introduction of `from plist` command - Introduction of `to plist`command --------- Co-authored-by: Darren Schroeder <343840+fdncred@users.noreply.github.com>
7 lines
164 B
Rust
7 lines
164 B
Rust
use nu_plugin::{serve_plugin, MsgPackSerializer};
|
|
use nu_plugin_formats::FormatCmdsPlugin;
|
|
|
|
fn main() {
|
|
serve_plugin(&FormatCmdsPlugin, MsgPackSerializer {})
|
|
}
|