mirror of
https://github.com/netbirdio/netbird.git
synced 2024-11-07 16:54:16 +01:00
2172d6f1b9
* refactor: extract common message encryption logic * refactor: move letsencrypt logic to common * refactor: rename common package to encryption * test: add encryption tests
14 lines
211 B
Go
14 lines
211 B
Go
package encryption_test
|
|
|
|
import (
|
|
. "github.com/onsi/ginkgo"
|
|
. "github.com/onsi/gomega"
|
|
|
|
"testing"
|
|
)
|
|
|
|
func TestManagement(t *testing.T) {
|
|
RegisterFailHandler(Fail)
|
|
RunSpecs(t, "Management Service Suite")
|
|
}
|