064bfd6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import type { CommandSpec } from '../registry.js' const time: CommandSpec = { name: 'time', description: 'Time a command', args: { name: 'command', description: 'Command to time', isCommand: true, }, } export default time