mirror of
https://github.com/diegosouzapw/OmniRoute.git
synced 2026-08-04 14:22:09 +03:00
Release v3.8.1 — feature flags settings page, bracketed combo names, security hardening, multi-driver SQLite
8 lines
315 B
TypeScript
8 lines
315 B
TypeScript
/** Jules REST API base — https://developers.google.com/jules/api */
|
|
export const JULES_API_BASE_URL = "https://jules.googleapis.com/v1alpha";
|
|
|
|
export function buildJulesApiUrl(path: string): string {
|
|
const normalized = path.startsWith("/") ? path : `/${path}`;
|
|
return `${JULES_API_BASE_URL}${normalized}`;
|
|
}
|