Skip to content

Instantly share code, notes, and snippets.

@paulallies
Created November 7, 2019 15:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save paulallies/566ba2ea7f290eda65d47996a4afa803 to your computer and use it in GitHub Desktop.
Save paulallies/566ba2ea7f290eda65d47996a4afa803 to your computer and use it in GitHub Desktop.
var express = require("express");
var app = express();
app.get("/", (req, res) => {
res.send("Prod API");
});
module.exports = app;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment