From 3b4ab46b584ba7e034193cb551e924528e27151b Mon Sep 17 00:00:00 2001 From: Bryce Bauer Date: Tue, 8 Dec 2020 23:07:32 -0600 Subject: [PATCH] Add files via upload --- src/modules/Auth.ts | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/modules/Auth.ts diff --git a/src/modules/Auth.ts b/src/modules/Auth.ts new file mode 100644 index 0000000..124fd2e --- /dev/null +++ b/src/modules/Auth.ts @@ -0,0 +1,16 @@ +import axios from 'axios' +const authURL = 'https://spookvooper.com/oauth2' + +class Auth { + private clientsecret + private authcode + private clientid + + constructor (clientid, clientsecret) { + this.clientid = clientid + this.clientsecret = clientsecret + } + + + +} \ No newline at end of file