UNPKG

node-google-apps-script

Version:

The easiest way to develop Google Apps Script projects

9 lines (7 loc) 296 B
const url = require('url'); const http = require('http'); const Promise = require('bluebird'); module.exports = async function createOAuthServerMock(port) { console.log("createOAuthServerMock with port " + port); return Promise.resolve("oauth_code_acquired_through_authentication_flow"); };