File size: 698 Bytes
cd8bd0a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
export function registerProvider(program) {
  program
    .command("provider [subcommand]")
    .description("Manage provider connections (use 'providers' for the full interface)")
    .allowUnknownOption()
    .allowExcessArguments()
    .action(() => {
      console.log(`
  Use \`omniroute providers\` for the full provider management interface:

    omniroute providers available   β€” show provider catalog
    omniroute providers list        β€” list configured connections
    omniroute providers test <name> β€” test a provider connection
    omniroute providers test-all    β€” test all active connections
    omniroute providers validate    β€” validate local configuration
`);
    });
}