diff --git a/retail/interactive-tutorials/product/remove-fulfillment-places.js b/retail/interactive-tutorials/product/remove-fulfillment-places.js index 40d7c70210..1045f0ad73 100644 --- a/retail/interactive-tutorials/product/remove-fulfillment-places.js +++ b/retail/interactive-tutorials/product/remove-fulfillment-places.js @@ -14,6 +14,8 @@ 'use strict'; +// [START retail_remove_fulfillment_places] + async function main(generatedProductId) { // Imports the Google Cloud client library. const {ProductServiceClient} = require('@google-cloud/retail').v2; @@ -84,3 +86,5 @@ process.on('unhandledRejection', err => { }); main(...process.argv.slice(2)); + +// [END retail_remove_fulfillment_places]