Skip to content
Merged
Changes from 9 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions retail/interactive-tutorials/events/write-user-event.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@

'use strict';

// [START retail_write_user_event]
async function main() {
// Imports the Google Cloud client library.
const {UserEventServiceClient} = require('@google-cloud/retail').v2;
Expand Down Expand Up @@ -63,6 +64,8 @@ async function main() {
process.on('unhandledRejection', err => {
console.error(err.message);
process.exitCode = 1;

Comment thread
glasnt marked this conversation as resolved.
Outdated
Comment thread
glasnt marked this conversation as resolved.
Outdated
});

main();
// [END retail_write_user_event]