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