@dataroadinc/setup-auth
Version:
CLI tool and programmatic API for automated OAuth setup across cloud platforms
20 lines (18 loc) • 463 B
text/typescript
import { Command } from "@commander-js/extra-typings"
/**
* Define the Azure command
*
* @param program The program instance
*/
export async function addCommandAzureSetupOAuth(
program: Command
): Promise<void> {
program
.command("azure-setup-oauth")
.description(
'Set up "Login with Microsoft" (Azure AD OAuth) for the given project'
)
.action(() => {
console.log("Azure AD OAuth setup functionality coming soon!")
})
}