mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 17:05:18 +00:00
f0d77ab3db
This relates to #12577 --------- Co-authored-by: gillespi314 <73313222+gillespi314@users.noreply.github.com> Co-authored-by: Roberto Dip <dip.jesusr@gmail.com>
16 lines
274 B
Go
16 lines
274 B
Go
//go:build !windows
|
|
|
|
package update
|
|
|
|
func RunWindowsMDMEnrollment(args WindowsMDMEnrollmentArgs) error {
|
|
return nil
|
|
}
|
|
|
|
func RunWindowsMDMUnenrollment(args WindowsMDMEnrollmentArgs) error {
|
|
return nil
|
|
}
|
|
|
|
func IsRunningOnWindowsServer() (bool, error) {
|
|
return false, nil
|
|
}
|