mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
11 lines
272 B
JavaScript
11 lines
272 B
JavaScript
Package.describe({
|
|
summary: "Maintain a connection to the leader of an election set",
|
|
version: '1.0.2'
|
|
});
|
|
|
|
Package.on_use(function (api) {
|
|
api.use(['logging', 'underscore', 'ddp', 'ejson']);
|
|
api.add_files(['follower.js'], 'server');
|
|
api.export('Follower');
|
|
});
|