Foobar is a Python library for dealing with word pluralization.
Use a package manager to install the dependency.
Example using npm
npm install @doctaridev/dvelop-client
Example using yarn
yarn add @doctaridev/dvelop-client
import createDvelopClient from '@doctaridev/dvelop-client';
const properties = {
baseUrl: 'https://my-instance.d-velop.cloud',
apiKey: 'my-develop-api-key',
};
const client = createDvelopClient(properties);
client.getRepositories()
.then((result) => {
console.log(result);
});
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.