mirror of
https://github.com/Control-D-Inc/ctrld.git
synced 2026-04-20 00:36:37 +02:00
9 lines
174 B
Go
9 lines
174 B
Go
//go:build !windows
|
|
|
|
package system
|
|
|
|
// GetActiveDirectoryDomain returns AD domain name of this computer.
|
|
func GetActiveDirectoryDomain() (string, error) {
|
|
return "", nil
|
|
}
|