mirror of
https://github.com/tribufu/node-gamedig
synced 2026-05-06 07:07:33 +00:00
13 lines
395 B
JavaScript
13 lines
395 B
JavaScript
import Epic from './epic.js'
|
|
|
|
export default class satisfactory extends Epic {
|
|
constructor () {
|
|
super()
|
|
|
|
// OAuth2 credentials extracted from Satisfactory files.
|
|
this.clientId = '02612880aa774fb28e3741d3e01501fd'
|
|
this.clientSecret = '7ZP]vm+i.uoetw@RxqRXpod_RNyjPC-%GM#ac~Pc'
|
|
this.deploymentId = '5aebeb30a7614270b4f40c0bc2fe7549'
|
|
this.authByExternalToken = true
|
|
}
|
|
}
|