UNPKG

soccer-go

Version:

Soccer CLI for stats and results.

18 lines (17 loc) 591 B
"use strict"; 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, // 1 month fixtures: 5 * 60 * 1000, // 5 minutes players: 7 * 24 * 60 * 60 * 1000, // 1 week scorers: 60 * 60 * 1000, // 1 hour standings: 60 * 60 * 1000, // 1 hour team: 7 * 24 * 60 * 60 * 1000, // 1 week }, fileName: 'cache', }, };