summaryrefslogtreecommitdiff
path: root/src/main.rs
blob: ce3bdfcca555b175253052c2567075d7cee294ec (plain)
1
2
3
4
5
6
7
8
9
10
//mod proto {
//    tonic::include_proto!("auth");
//}

#[tokio::main]
async fn main() {
    let channel = tonic::transport::Channel::from_static("http://127.0.0.1:50051").connect().await.unwrap();
    
}