Files
meteor/packages/ctl/package.js
estark37 372a16e6ce Factor out most of ctl into a ctl-helper package
We use ctl-helper on galaxy in the proxy control program.
2013-05-17 22:43:56 -07:00

10 lines
235 B
JavaScript

Package.describe({
summary: "Default control program for an application"
});
Package.on_use(function (api) {
api.use(['underscore', 'livedata', 'mongo-livedata', 'ctl-helper'], 'server');
api.add_files('ctl.js', 'server');
});