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