mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
10 lines
235 B
JavaScript
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');
|
|
});
|