Files
tarpc/example-service/src/lib.rs
2019-07-29 22:04:04 -07:00

16 lines
486 B
Rust

// Copyright 2018 Google LLC
//
// Use of this source code is governed by an MIT-style
// license that can be found in the LICENSE file or at
// https://opensource.org/licenses/MIT.
#![feature(async_await)]
/// This is the service definition. It looks a lot like a trait definition.
/// It defines one RPC, hello, which takes one arg, name, and returns a String.
#[tarpc::service]
pub trait Service {
/// Returns a greeting for name.
async fn hello(name: String) -> String;
}