diff options
author | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2018-02-23 22:13:22 +0100 |
---|---|---|
committer | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2018-02-23 22:13:22 +0100 |
commit | 2231e3eae86c5e3ae05e30f667d331f5875c7884 (patch) | |
tree | 44c56c9d8b3bb4c6cbee26bedc2c0aec9d9bb5f1 /main.go | |
parent | 84273d6128b7c3c9d31c2f3a1453107a78e949a9 (diff) |
Added target and terminal supportv1.1.0
Signed-off-by: Sebastien Douheret <sebastien.douheret@iot.bzh>
Diffstat (limited to 'main.go')
-rw-r--r-- | main.go | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -208,6 +208,7 @@ func main() { initCmdProjects(&app.Commands) initCmdSdks(&app.Commands) initCmdExec(&app.Commands) + initCmdTargets(&app.Commands) initCmdMisc(&app.Commands) // Add --config option to all commands to support --config option either before or after command verb @@ -312,6 +313,10 @@ func main() { XdsConnClose() }() + // Start signals monitoring routine + MonitorSignals() + + // Run the cli app app.Run(os.Args) } |