@letanure/resend-cli
Version:
A command-line interface for Resend email API
9 lines • 423 B
JavaScript
import { registerCreateApiKeyCommand } from './create/cli.js';
import { registerDeleteApiKeyCommand } from './delete/cli.js';
import { registerListApiKeysCommand } from './list/cli.js';
export function registerApiKeysCommands(apiKeysCommand) {
registerCreateApiKeyCommand(apiKeysCommand);
registerDeleteApiKeyCommand(apiKeysCommand);
registerListApiKeysCommand(apiKeysCommand);
}
//# sourceMappingURL=cli.js.map