Skip to main content

spin_plugins/
lib.rs

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