mirror of
https://github.com/nushell/nushell
synced 2024-12-28 22:13:10 +00:00
4d7dd23779
* json encoder * thread to pass messages * description for example
10 lines
289 B
Rust
10 lines
289 B
Rust
mod plugin;
|
|
mod protocol;
|
|
mod serializers;
|
|
|
|
#[allow(dead_code)]
|
|
mod plugin_capnp;
|
|
|
|
pub use plugin::{get_signature, serve_plugin, Plugin, PluginDeclaration};
|
|
pub use protocol::{EvaluatedCall, LabeledError};
|
|
pub use serializers::{capnp::CapnpSerializer, json::JsonSerializer, EncodingType};
|