1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
//! C9 — Elasticsearch backend plugin.
//!
//! Promotes Elasticsearch from a metadata-only enum entry to a real
//! wired plugin. Mirrors the Qdrant / Mongo plugin shape: zero-sized
//! struct + `pub static PLUGIN` + `Backend` impl whose `register()`
//! delegates to `setup_data::register_elasticsearch`, plus a
//! `DispatchFactory` impl that builds an `ElasticsearchExecutor` for
//! the resolved instance.
use crateBackendKind;
use crate;
;
pub static PLUGIN: ElasticsearchPlugin = ElasticsearchPlugin;