Files
ctrld/metadata_others.go
T
2026-04-30 19:19:19 +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"
}