blob: 654b746ec24f162443db3f90f839cb8fec1ac8f1 [file] [log] [blame]
// Copyright 2019 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@available(added=7)
library fuchsia.recovery;
using zx;
/// A protocol for intitiating a factory reset.
@discoverable
closed protocol FactoryReset {
/// Request an immediate factory reset. If unsuccessful will return an
/// error.
strict Reset() -> (struct {
status zx.Status;
});
};