1pub mod install {
2 use anyhow::Result;
3 use clap::Subcommand;
4
5 #[derive(Subcommand)]
6 pub enum InstallCommands {}
7
8 pub async fn run(_cmd: InstallCommands) -> Result<()> {
9 Ok(())
10 }
11}
12
13pub mod secrets_cli {
14 use anyhow::Result;
15 use clap::Subcommand;
16
17 #[derive(Subcommand)]
18 pub enum SecretsCommands {}
19
20 pub async fn run(_cmd: SecretsCommands) -> Result<()> {
21 Ok(())
22 }
23}
24
25pub mod cli {
26 use anyhow::Result;
27 use clap::Subcommand;
28
29 #[derive(Subcommand)]
30 pub enum ServiceCommands {}
31
32 pub async fn run(_cmd: ServiceCommands) -> Result<()> {
33 Ok(())
34 }
35}