Skip to content

Commit

Permalink
fix: move code to outside of sample snippets (#1701)
Browse files Browse the repository at this point in the history
  • Loading branch information
sofisl authored Apr 1, 2020
1 parent d685169 commit f75e641
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion appengine/analytics/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,5 +73,5 @@ app.listen(PORT, () => {
console.log('Press Ctrl+C to quit.');
});

module.exports = app;
// [END gae_flex_analytics_track_event]
module.exports = app;
2 changes: 1 addition & 1 deletion appengine/static-files/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,5 @@ app.listen(PORT, () => {
console.log('Press Ctrl+C to quit.');
});

module.exports = app;
// [END gae_flex_node_static_files]
module.exports = app;
2 changes: 1 addition & 1 deletion containerengine/hello-world/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@ const handleRequest = function (req, res) {
const www = http.createServer(handleRequest);
www.listen(process.env.PORT || 8080);

module.exports = www;
// [END all]
module.exports = www;

0 comments on commit f75e641

Please sign in to comment.