// SPDX-FileCopyrightText: © 2021 Grégoire Duchêne // SPDX-License-Identifier: ISC // +build !linux nosystemd package gosdd import "os" func sdListenFDs(bool) ([]*os.File, error) { return nil, ErrNoSDSupport } func sdListenFDsWithNames(bool) (map[string]*os.File, error) { return nil, ErrNoSDSupport }