mirror of
https://github.com/Control-D-Inc/ctrld.git
synced 2026-02-03 22:18:39 +00:00
11 lines
245 B
Go
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"
|
|
}
|