UNPKG

studiocms

Version:

Astro Native CMS for AstroDB. Built from the ground up by the Astro community.

10 lines (9 loc) 275 B
import { Cli } from "../../effect.js"; import { genJWT } from "./genJWT/index.js"; const cryptoCMD = Cli.Command.make("crypto").pipe( Cli.Command.withDescription("Crypto Utilities for StudioCMS Security"), Cli.Command.withSubcommands([genJWT]) ); export { cryptoCMD };