mirror of
https://github.com/decolua/9router.git
synced 2026-05-08 12:01:28 +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}` };
|
|
}
|