blob: c7d4eb3b2ddcb6dd469398c47e2c35f6274ddcb9 [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 test.modular.dart;
@discoverable
protocol Server {
echo(struct {
value string:optional;
}) -> (struct {
response string:optional;
});
};