narwhal-commands 2.3.0

Stateless command and helper modules for narwhal: completion, export, wizard, snippets, DDL, EXPLAIN, cell edit, statement extraction.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Re-export of the candidate types that now live in `narwhal-domain`.
//!
//! `Completion` and `CompletionKind` moved out of this crate so the
//! result-pane state in `narwhal-domain` can name the candidate
//! without pulling `narwhal-commands` along. The engine that produces
//! candidates stays in this crate; this shim just keeps the old
//! `narwhal_commands::completion::{Completion, CompletionKind}` import
//! path working.

pub use narwhal_domain::completion::{Completion, CompletionKind};