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