Skip to content

Commit 3458868

Browse files
committed
refactor(opencode): keep base url helper private
1 parent 35949bb commit 3458868

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/sim/lib/opencode/client.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ function getOpenCodeBasicAuthHeader(): string {
1717
return `Basic ${Buffer.from(`${username}:${password}`).toString('base64')}`
1818
}
1919

20-
export function getOpenCodeBaseUrl(): string {
20+
function getOpenCodeBaseUrl(): string {
2121
const explicitBaseUrl = process.env.OPENCODE_BASE_URL?.trim()
2222
if (explicitBaseUrl) {
2323
return explicitBaseUrl

0 commit comments

Comments
 (0)