2026-04-01 17:55:35 +08:00

12 lines
266 B
TypeScript

import type { Command } from '../../commands.js'
const buddy = {
type: 'local',
name: 'buddy',
description: 'View and manage your companion buddy',
supportsNonInteractive: false,
load: () => import('./buddy.js'),
} satisfies Command
export default buddy