├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── __tests__ ├── .gitkeep └── Daily_test.re ├── bsconfig.json ├── package.json ├── re └── Daily.re └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astrocoders/bacen-exchange-rates/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astrocoders/bacen-exchange-rates/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astrocoders/bacen-exchange-rates/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astrocoders/bacen-exchange-rates/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /__tests__/Daily_test.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astrocoders/bacen-exchange-rates/HEAD/__tests__/Daily_test.re -------------------------------------------------------------------------------- /bsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astrocoders/bacen-exchange-rates/HEAD/bsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astrocoders/bacen-exchange-rates/HEAD/package.json -------------------------------------------------------------------------------- /re/Daily.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astrocoders/bacen-exchange-rates/HEAD/re/Daily.re -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astrocoders/bacen-exchange-rates/HEAD/yarn.lock --------------------------------------------------------------------------------