blob: fb330538be96209a4a45f69e554d04b0a5e017b9 [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.
library fuchsia.virtualconsole;
using zx;
using fuchsia.hardware.pty;
/// Manages virtual console sessions.
[Discoverable, Layout = "Simple"]
protocol SessionManager {
/// Create a new virtual console session.
CreateSession(request<fuchsia.hardware.pty.Device> session);
};