constellation/bootstrapper/internal/reboot/reboot_cross.go

15 lines
252 B
Go
Raw Normal View History

2024-07-09 03:27:32 -04:00
//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")
}