2016-01-03 23:58:51 -04:00
|
|
|
###
|
2017-06-15 00:20:15 +03:00
|
|
|
Copyright 2016-2017 Resin.io
|
2016-01-03 23:58:51 -04:00
|
|
|
|
|
|
|
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.
|
|
|
|
###
|
|
|
|
|
2014-11-26 15:11:34 -04:00
|
|
|
module.exports =
|
2015-05-07 12:40:12 -03:00
|
|
|
wizard: require('./wizard')
|
2014-11-26 15:11:34 -04:00
|
|
|
app: require('./app')
|
2015-01-15 11:16:07 -03:00
|
|
|
info: require('./info')
|
2014-11-26 15:11:34 -04:00
|
|
|
auth: require('./auth')
|
|
|
|
device: require('./device')
|
|
|
|
env: require('./environment-variables')
|
|
|
|
keys: require('./keys')
|
2014-11-28 12:46:24 -04:00
|
|
|
logs: require('./logs')
|
2017-03-08 19:26:08 +00:00
|
|
|
local: require('./local')
|
2014-12-24 12:40:40 -04:00
|
|
|
notes: require('./notes')
|
2014-12-12 17:20:29 -04:00
|
|
|
help: require('./help')
|
2015-09-29 13:03:14 -04:00
|
|
|
os: require('./os')
|
2015-11-15 22:08:02 -04:00
|
|
|
settings: require('./settings')
|
2015-11-10 12:53:34 -04:00
|
|
|
config: require('./config')
|
2016-03-28 09:21:25 -04:00
|
|
|
sync: require('./sync')
|
2016-04-24 22:52:41 +03:00
|
|
|
ssh: require('./ssh')
|
2017-03-24 12:48:14 +03:00
|
|
|
internal: require('./internal')
|
2017-03-29 12:03:40 +01:00
|
|
|
build: require('./build')
|
|
|
|
deploy: require('./deploy')
|
2017-06-15 00:20:15 +03:00
|
|
|
util: require('./util')
|
2017-08-04 14:53:31 +02:00
|
|
|
preload: require('./preload')
|