1/*
2 * Copyright 2022 Meta
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7service Hello {
8    void ping();
9    string echo(1: string msg);
10    i32 counter();
11}
12