Files
ctrld/metadata_others.go
2025-12-18 17:10:39 +07:00

11 lines
245 B
Go

//go:build !windows
package ctrld
import "context"
// partOfDomainOrWorkgroup checks if the computer is part of a domain or workgroup and returns "true" or "false".
func partOfDomainOrWorkgroup(ctx context.Context) string {
return "false"
}