Socialify

Folder ..

Viewing environment.ts
10 lines (9 loc) • 429.0 B

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
import home_dir from "https://deno.land/x/[email protected]/home_dir/mod.ts";
import { join } from "https://deno.land/[email protected]/path/mod.ts";

export const environment = {
  baseUrl: "https://restcountries.com/v3.1/",
  syncInterval: 7,
  cacheDir: join(home_dir() as string, ".cache", "countryfetch"),
  queries:
    "all?fields=name,capital,currencies,population,flag,languages,region,subregion,timezones,latlng,capitalInfo,tld",
};