From 29473a761133db550ab2f2b4b9367d90e3283907 Mon Sep 17 00:00:00 2001 From: logfox-agent Date: Fri, 10 Jul 2026 14:27:33 -0400 Subject: [PATCH] feat: mount typed RPC at /v1 instead of /api Hostnames already say api.*; /v1 is a clearer versioning prefix and keeps RPC off /healthcheck, /upload, and other non-RPC routes. --- src/api.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api.ts b/src/api.ts index 5c8a7e8..36d0a91 100644 --- a/src/api.ts +++ b/src/api.ts @@ -21,7 +21,7 @@ async function apiCall(method: string, body?: unknown): Promise