//go:build !linux package namespace import ( "os" "git.theodohertyfamily.com/tools/wg-wrap/internal/paths" ) // AcquireProfileLock is a stub for non-Linux platforms. func AcquireProfileLock(pm *paths.PathManager, profile string) (*os.File, error) { return nil, nil } // ReleaseProfileLock is a stub for non-Linux platforms. func ReleaseProfileLock(file *os.File) { }