mirror of
https://github.com/strapi/strapi.git
synced 2025-10-30 01:17:28 +00:00
13 lines
271 B
TypeScript
13 lines
271 B
TypeScript
|
|
import action from './action';
|
||
|
|
import command from './command';
|
||
|
|
import type { StrapiCloudCommandInfo } from '../types';
|
||
|
|
|
||
|
|
export { action, command };
|
||
|
|
|
||
|
|
export default {
|
||
|
|
name: 'login',
|
||
|
|
description: 'Strapi Cloud Login',
|
||
|
|
action,
|
||
|
|
command,
|
||
|
|
} as StrapiCloudCommandInfo;
|