mirror of
https://github.com/netbirdio/netbird.git
synced 2026-04-19 00:36:38 +00:00
14 lines
189 B
Go
14 lines
189 B
Go
package system
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
log "github.com/sirupsen/logrus"
|
|
)
|
|
|
|
func TestGetInfo(t *testing.T) {
|
|
info := GetInfo(context.Background())
|
|
log.Infof("info: %+v", info)
|
|
}
|