blob: 44e65278c896bda502efcec57af8ba8c24a8780d [file] [log] [blame]
// Copyright 2018 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.
library fuchsia.modular.internal;
// A debug interface exposed by `basemgr` to allow developer tools to control
// state within the `basemgr` process.
[Discoverable]
interface BasemgrDebug {
// Restarts the current session.
RestartSession();
// Logs in as a guest user.
LoginAsGuest();
};