├── .editorconfig ├── .gitattributes ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── package.json ├── plugin.js └── test ├── opts.test.js └── plugin.test.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cemremengu/fastify-oracle/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cemremengu/fastify-oracle/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cemremengu/fastify-oracle/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cemremengu/fastify-oracle/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cemremengu/fastify-oracle/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cemremengu/fastify-oracle/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cemremengu/fastify-oracle/HEAD/package.json -------------------------------------------------------------------------------- /plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cemremengu/fastify-oracle/HEAD/plugin.js -------------------------------------------------------------------------------- /test/opts.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cemremengu/fastify-oracle/HEAD/test/opts.test.js -------------------------------------------------------------------------------- /test/plugin.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cemremengu/fastify-oracle/HEAD/test/plugin.test.js --------------------------------------------------------------------------------