blob: 624ea98344825e71c9618d0bbee3c40b7ed64592 [file]
library samples.sdk.examples.fidl;
type Greeting = struct {
text string;
};
@discoverable
protocol GreetingService {
Greet(struct {
greeting box<Greeting>;
}) -> (struct {
greeting box<Greeting>;
});
};