spin_plugins/
lib.rs

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
pub mod badger;
pub mod error;
mod git;
pub mod lookup;
pub mod manager;
pub mod manifest;
mod store;
pub use store::PluginStore;

/// List of Spin internal subcommands
pub(crate) const SPIN_INTERNAL_COMMANDS: &[&str] = &[
    "template",
    "templates",
    "up",
    "new",
    "add",
    "login",
    "deploy",
    "build",
    "plugin",
    "plugins",
    "trigger",
    "external",
    "doctor",
    "registry",
    "watch",
    "oci",
];