constellation/bootstrapper/internal/reboot/reboot_cross.go
2024-07-09 09:27:32 +02:00

15 lines
252 B
Go

//go:build !linux
/*
Copyright (c) Edgeless Systems GmbH
SPDX-License-Identifier: AGPL-3.0-only
*/
package reboot
// Reboot is not implemented on non-Linux platforms.
func Reboot(_ error) {
panic("reboot not implemented on non-Linux platforms")
}