Files
lgpo-server/internal/agent/platform_other.go
groot d191b871de
All checks were successful
release-tag / release-image (push) Successful in 1m37s
init
2026-08-05 10:46:09 +02:00

15 lines
438 B
Go

//go:build !windows
package agent
import (
"context"
"errors"
)
var errWindowsOnly = errors.New("policy application is supported only on Windows")
func backupLocalPolicy(context.Context, string, string) error { return errWindowsOnly }
func applyPolicyDirectories(context.Context, string, []string) error { return errWindowsOnly }
func restoreLocalPolicy(context.Context, string, string) error { return errWindowsOnly }