Files
neuron/packages/opencode/src/cli/cmd/debug/startup.ts
T
2026-04-25 15:08:19 +00:00

12 lines
261 B
TypeScript

import { EOL } from "os"
import { cmd } from "../cmd"
export const StartupCommand = cmd({
command: "startup",
describe: "print startup timing",
builder: (yargs) => yargs,
handler() {
process.stdout.write(performance.now().toString() + EOL)
},
})