mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-01-07 05:38:03 -05:00
15 lines
252 B
Go
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")
|
|
}
|