Add files via upload

This commit is contained in:
Bryce Bauer 2020-12-08 23:07:32 -06:00 committed by GitHub
parent 4c42cd59e3
commit 831d581e19
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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
}
}