Skip to content

Commit 94e5765

Browse files
committed
Added daemon mode (WIP)
1 parent dfb3720 commit 94e5765

File tree

8 files changed

+1169
-0
lines changed

8 files changed

+1169
-0
lines changed

commands/root/root.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ import (
2626
"github.com/arduino/arduino-cli/commands/compile"
2727
"github.com/arduino/arduino-cli/commands/config"
2828
"github.com/arduino/arduino-cli/commands/core"
29+
"github.com/arduino/arduino-cli/commands/daemon"
2930
"github.com/arduino/arduino-cli/commands/generatedocs"
3031
"github.com/arduino/arduino-cli/commands/lib"
3132
"github.com/arduino/arduino-cli/commands/sketch"
@@ -57,6 +58,7 @@ func Init() *cobra.Command {
5758
command.AddCommand(compile.InitCommand())
5859
command.AddCommand(config.InitCommand())
5960
command.AddCommand(core.InitCommand())
61+
command.AddCommand(daemon.InitCommand())
6062
command.AddCommand(generatedocs.InitCommand())
6163
command.AddCommand(lib.InitCommand())
6264
// command.AddCommand(login.InitCommand())

0 commit comments

Comments
 (0)