aboutsummaryrefslogtreecommitdiff
path: root/environment/environment.ts
blob: 3fd511df4d0d86a27f574af713e8cf5ff1c1ed5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
export const environment = {
  baseUrl: "https://restcountries.com/v3.1/",
  syncInterval: 7,
  queries:
    "all?fields=" +
    "name," +
    "capital," +
    "currencies," +
    "population," +
    "flag," +
    "region," +
    "continent," +
    "languages",
};