mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
12 lines
229 B
JavaScript
12 lines
229 B
JavaScript
Package.describe({
|
|
summary: "Retry logic with exponential backoff",
|
|
version: '1.1.1',
|
|
});
|
|
|
|
Package.onUse(function (api) {
|
|
api.use('ecmascript');
|
|
api.use('random');
|
|
api.mainModule('retry.js');
|
|
api.export('Retry');
|
|
});
|