blob: ad421be1ecbcf63d16bfda4c6537331e031c8880 [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.testing.appmgr;
// An interface for a test service.
[Discoverable]
interface TestService {
// Returns a nice message.
1: GetMessage() -> (string message);
};
// Another interface for a test service.
[Discoverable]
interface TestService2 {
// Returns a nice message.
1: GetMessage() -> (string message);
};