Current section
Files
Jump to
Current section
Files
lib_src/nerves_runtime/poweroff.ex
# SPDX-FileCopyrightText: 2023 Frank Hunleth
#
# SPDX-License-Identifier: Apache-2.0
#
defmodule Toolshed.NervesRuntime.Poweroff do
@doc """
Helper for gracefully powering off
Not all Nerves devices support powering themselves off. These devices reboot
instead.
"""
@spec poweroff() :: no_return()
defdelegate poweroff(), to: Nerves.Runtime
end