Add files via upload

This commit is contained in:
Bryce Bauer 2020-12-08 23:07:32 -06:00 committed by Brendan Lane
parent a986fbe2a7
commit 3b4ab46b58
1 changed files with 16 additions and 0 deletions

16
src/modules/Auth.ts Normal file
View File

@ -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
}
}