// SPDX-FileCopyrightText: 2026 Echolot contributors // SPDX-License-Identifier: GPL-3.0-or-later //go:build !linux package system import "os" // DisableEcho is a no-op off Linux: the password is still read, just echoed. Better than // refusing to run — an operator on a Mac still needs to set the break-glass password. func DisableEcho(*os.File) (func(), error) { return nil, nil }