mirror of
https://github.com/Nezumi-2711/9router.git
synced 2026-09-22 20:00:47 +00:00
5 lines
143 B
JavaScript
5 lines
143 B
JavaScript
// Shared embedding helpers
|
|
export function bearerAuth(creds) {
|
|
return { "Authorization": `Bearer ${creds.apiKey || creds.accessToken}` };
|
|
}
|