Skip to content

Commit

Permalink
add missing src/env-auth-provider.mjs from template
Browse files Browse the repository at this point in the history
  • Loading branch information
arlac77 committed Jun 20, 2024
1 parent caba5d8 commit 65c10ef
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/env-auth-provider.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
/**
* Provide credentials from environment variables
*/
export class EnvironmentAuthProvider {
constructor(options = {}) {}

async provideCredentials(realm) {
console.log(JSON.stringify(realm));
return undefined;
}
}

0 comments on commit 65c10ef

Please sign in to comment.