import { Handlers } from "$fresh/server.ts"; import { CLI_VERSION } from "$cli/config.ts"; export const handler: Handlers = { GET() { return new Response(CLI_VERSION); } }