const DEFAULT_SOURCE = "https://gitea.synoth.com/synoth/brick-index/raw/branch/master/blocks.yaml"; export function resolveSource(cliSource?: string): string { if (cliSource) return cliSource; if (process.env.BRICK_SOURCE) return process.env.BRICK_SOURCE; return DEFAULT_SOURCE; }