spin_plugins/
lib.rs

1pub mod badger;
2pub mod error;
3mod git;
4pub mod lookup;
5pub mod manager;
6pub mod manifest;
7mod store;
8pub use store::PluginStore;
9
10/// List of Spin internal subcommands
11pub(crate) const SPIN_INTERNAL_COMMANDS: &[&str] = &[
12    "template",
13    "templates",
14    "up",
15    "new",
16    "add",
17    "login",
18    "deploy",
19    "build",
20    "plugin",
21    "plugins",
22    "trigger",
23    "external",
24    "doctor",
25    "registry",
26    "watch",
27    "oci",
28];