2016-01-11 19:58:35 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
Copyright 2016 Resin.io
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2015-02-26 15:47:56 +00:00
|
|
|
(function() {
|
|
|
|
module.exports = {
|
2015-05-07 15:40:12 +00:00
|
|
|
wizard: require('./wizard'),
|
2015-02-26 15:47:56 +00:00
|
|
|
app: require('./app'),
|
|
|
|
info: require('./info'),
|
|
|
|
auth: require('./auth'),
|
|
|
|
device: require('./device'),
|
|
|
|
env: require('./environment-variables'),
|
|
|
|
keys: require('./keys'),
|
|
|
|
logs: require('./logs'),
|
|
|
|
notes: require('./notes'),
|
2015-09-29 17:03:14 +00:00
|
|
|
help: require('./help'),
|
2015-11-10 16:53:34 +00:00
|
|
|
os: require('./os'),
|
2015-11-16 02:08:02 +00:00
|
|
|
settings: require('./settings'),
|
2016-03-28 13:21:25 +00:00
|
|
|
config: require('./config'),
|
2016-04-24 19:52:41 +00:00
|
|
|
sync: require('./sync'),
|
|
|
|
ssh: require('./ssh')
|
2015-02-26 15:47:56 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}).call(this);
|