mirror of
https://github.com/Control-D-Inc/ctrld.git
synced 2026-03-13 10:26:06 +00: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
|
|
}
|