Move management server to a separate directory (#67)

* Move management server to a separate directory
This commit is contained in:
andpar83
2021-07-24 07:14:29 -07:00
committed by GitHub
parent 83ac774264
commit 9e4aa4f1f1
10 changed files with 109 additions and 22 deletions

View File

@ -0,0 +1,13 @@
package server_test
import (
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
"testing"
)
func TestManagement(t *testing.T) {
RegisterFailHandler(Fail)
RunSpecs(t, "Management Service Suite")
}