soccer-go
Version:
Soccer CLI for stats and results.
17 lines (16 loc) • 500 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.default = {
apiBaseUrl: 'https://api.football-data.org/v4',
authToken: process.env.SOCCER_GO_API_KEY,
cache: {
expiry: {
competition: 30 * 24 * 60 * 60 * 1000,
fixtures: 5 * 60 * 1000,
players: 7 * 24 * 60 * 60 * 1000,
standings: 60 * 60 * 1000,
team: 7 * 24 * 60 * 60 * 1000, // 1 week
},
fileName: 'cache',
},
};