()
| 1 | import type { Command, LocalCommandCall } from '../types/command.js' |
| 2 | |
| 3 | const 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 | |
| 12 | const version = { |
| 13 | type: 'local', |
nothing calls this directly
no outgoing calls
no test coverage detected