chore(docs): Fix examples link (#202)

* url is just examples, not tonic-examples

* Change root directory from tonic-examples to examples.  Matches current directory structure.
This commit is contained in:
Thomas May
2019-12-20 22:39:39 -05:00
committed by Lucio Franco
parent 5e6b1fe487
commit 59d008db7e
6 changed files with 11 additions and 11 deletions
+1 -1
View File
@@ -7,7 +7,7 @@ use tonic::transport::{Certificate, Channel, ClientTlsConfig};
#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
let pem = tokio::fs::read("tonic-examples/data/tls/ca.pem").await?;
let pem = tokio::fs::read("examples/data/tls/ca.pem").await?;
let ca = Certificate::from_pem(pem);
let tls = ClientTlsConfig::new()
+2 -2
View File
@@ -51,8 +51,8 @@ impl pb::echo_server::Echo for EchoServer {
#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
let cert = tokio::fs::read("tonic-examples/data/tls/server.pem").await?;
let key = tokio::fs::read("tonic-examples/data/tls/server.key").await?;
let cert = tokio::fs::read("examples/data/tls/server.pem").await?;
let key = tokio::fs::read("examples/data/tls/server.key").await?;
let identity = Identity::from_pem(cert, key);