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
//! Initialisers — the `init` subcommand's plug-in point.
use async_trait;
use distributed_slice;
use App;
/// A pluggable bootstrap step run by the `init` subcommand.
///
/// Initialisers typically prompt for configuration values, write a
/// user config file, set up OS keychain entries, generate SSH keys,
/// etc. The `init` command iterates every registered initialiser in
/// registration order, skipping any that report `is_configured ==
/// true` unless the user passes `--force`.
/// Link-time registry of initialiser factories.
///
/// ```no_run
/// use rtb_app::app::App;
/// use rtb_app::linkme::distributed_slice;
/// use rtb_cli::init::{Initialiser, INITIALISERS};
///
/// struct MyInitialiser;
///
/// #[async_trait::async_trait]
/// impl Initialiser for MyInitialiser {
/// fn name(&self) -> &'static str {
/// "my-initialiser"
/// }
///
/// async fn is_configured(&self, _app: &App) -> bool {
/// false
/// }
///
/// async fn configure(&self, _app: &App) -> miette::Result<()> {
/// Ok(())
/// }
/// }
///
/// #[distributed_slice(INITIALISERS)]
/// fn register() -> Box<dyn Initialiser> { Box::new(MyInitialiser) }
/// ```
pub static INITIALISERS: ;