blob: 111b9c31bd1a36a9d8c5795a9e7dbb553222115d [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.chrealm;
// An interface for a test service.
@discoverable
protocol Tester {
// Returns a nice message.
GetMessage() -> (struct {
message string:MAX;
});
};