(pathname: string)
| 16 | export const isApiPath = (pathname: string) => pathname === "/api" || pathname.startsWith("/api/"); |
| 17 | |
| 18 | export const isAppOwnedPath = (pathname: string) => |
| 19 | isApiPath(pathname) || classifyMcpPath(pathname) !== null; |
no test coverage detected