blob: 8d2df6449f7637e7e30937304431af3f723fbc8b [file] [log] [blame]
// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
library base.testfidl;
@discoverable
closed protocol TestInterface {
strict Add(struct {
a int32;
b int32;
}) -> (struct {
sum int32;
});
};