blob: d740f34c73385b4868d8abf97b0570576d8344ec [file] [log] [blame]
// Copyright 2021 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 test.touch;
/// A test-specific protocol to launch a child test app under a test app.
@discoverable
protocol TestAppLauncher {
Launch(struct {
debug_name string;
}) -> ();
};