From 56f8542945bbb40d0e69d6021af221fb8a71266b Mon Sep 17 00:00:00 2001 From: Lukas Ruge <lukeslog@googlemail.com> Date: Thu, 8 Oct 2020 10:44:34 +0200 Subject: [PATCH] constants --- constants.js | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 constants.js diff --git a/constants.js b/constants.js new file mode 100644 index 0000000..9608df1 --- /dev/null +++ b/constants.js @@ -0,0 +1,21 @@ +var consumerKey = null; +var consumerSecret = null; + +var accessTokenKey = null; +var accessTokenSecret = null; + +exports.getConsumerSecret = function() { + return consumerSecret ; +}; + +exports.getConsumerKey = function() { + return consumerKey; +}; + +exports.getTokenKey = function() { + return accessTokenKey; +}; + +exports.getTokenSecret = function() { + return accessTokenSecret; +}; -- GitLab