MCPcopy Create free account
hub / github.com/codeaashu/claude-code / call

Function call

src/commands/version.ts:3–10  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1import type { Command, LocalCommandCall } from '../types/command.js'
2
3const call: LocalCommandCall = async () => {
4 return {
5 type: 'text',
6 value: MACRO.BUILD_TIME
7 ? `${MACRO.VERSION} (built ${MACRO.BUILD_TIME})`
8 : MACRO.VERSION,
9 }
10}
11
12const version = {
13 type: 'local',

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected