plerobuddies/src/config.sample.js

22 lines
453 B
JavaScript

// do NOT check this in.
// which ones are active?
const buddies = [{
name: "animalcrossing",
instance: "https://mastodon.social",
oauthToken: "my-token"
}, {
name: "mobygames",
instance: "https://botsin.space",
oauthToken: "my-token-for-botsin-space",
mobyGamesToken: "my-mobygames-api-token",
platform: 10, // gameboy
totalAmountOfGames: 688 // mobygames has a total of 688 GB games in their library
}]
module.exports = {
buddies
}