Skip to content

Commit

Permalink
chore: remove snippet leading whitespace (#310)
Browse files Browse the repository at this point in the history
  • Loading branch information
chingor13 authored Mar 19, 2020
1 parent 1f1ada2 commit 968abd3
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions packages/google-cloud-oslogin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,18 +55,18 @@ npm install @google-cloud/os-login
### Using the client library

```javascript
const {OsLoginServiceClient} = require('@google-cloud/os-login');
const client = new OsLoginServiceClient();

async function quickstart() {
const [loginProfile] = await client.getLoginProfile({
name: 'users/[email protected]',
});
console.log('Login Profile:');
console.log(loginProfile);
}

quickstart();
const {OsLoginServiceClient} = require('@google-cloud/os-login');
const client = new OsLoginServiceClient();

async function quickstart() {
const [loginProfile] = await client.getLoginProfile({
name: 'users/[email protected]',
});
console.log('Login Profile:');
console.log(loginProfile);
}

quickstart();

```

Expand Down

0 comments on commit 968abd3

Please sign in to comment.