global: split Akvorado into 3 services

This commit is contained in:
Vincent Bernat
2022-04-01 20:21:53 +02:00
parent a336370c05
commit 1dc253764d
179 changed files with 1768 additions and 1263 deletions

14
cmd/console_test.go Normal file
View File

@@ -0,0 +1,14 @@
package cmd
import (
"testing"
"akvorado/common/reporter"
)
func TestConsoleStart(t *testing.T) {
r := reporter.NewMock(t)
if err := consoleStart(r, DefaultConsoleConfiguration, true); err != nil {
t.Fatalf("consoleStart() error:\n%+v", err)
}
}