Extend the system informations

This commit is contained in:
Zoltán Papp
2024-01-17 09:03:41 +01:00
parent 9fa0fbda0d
commit ef4a2ccbca
9 changed files with 286 additions and 12 deletions

View File

@@ -0,0 +1,13 @@
package system
import (
"context"
"testing"
log "github.com/sirupsen/logrus"
)
func TestGetInfo(t *testing.T) {
info := GetInfo(context.Background())
log.Infof("info: %+v", info)
}