mirror of
https://github.com/balena-io/balena-cli.git
synced 2024-12-19 13:47:52 +00:00
20 lines
402 B
JavaScript
20 lines
402 B
JavaScript
// Generated by CoffeeScript 1.12.2
|
|
(function() {
|
|
var getSdk, opts, settings;
|
|
|
|
getSdk = require('resin-sdk');
|
|
|
|
settings = require('resin-settings-client');
|
|
|
|
opts = {
|
|
apiUrl: settings.get('apiUrl'),
|
|
imageMakerUrl: settings.get('imageMakerUrl'),
|
|
dataDirectory: settings.get('dataDirectory'),
|
|
apiVersion: 'v2',
|
|
retries: 2
|
|
};
|
|
|
|
module.exports = getSdk(opts);
|
|
|
|
}).call(this);
|