mirror of
https://github.com/Control-D-Inc/ctrld.git
synced 2026-03-25 23:30:41 +01: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"
|
|
}
|