Files
orcs-code/src/commands/usage/index.ts
JATMN 26413f6d30 feat(minimax): add /usage support and fix MiniMax quota parsing (#869)
* Add MiniMax usage UI and API support

* Fix MiniMax usage parsing and refresh UI

* Refactor MiniMax usage handling
2026-04-25 12:33:22 +08:00

9 lines
202 B
TypeScript

import type { Command } from '../../commands.js'
export default {
type: 'local-jsx',
name: 'usage',
description: 'Show plan usage limits',
load: () => import('./usage.js'),
} satisfies Command