Update 'src/main.rs'
Moar debugging!
This commit is contained in:
parent
d467bb7c64
commit
c442bd8667
1 changed files with 1 additions and 1 deletions
|
@ -220,7 +220,7 @@ async fn echo(req: Request<Body>) -> Result<Response<Body>> {
|
||||||
let domain = split_path[1];
|
let domain = split_path[1];
|
||||||
let token = split_path[2];
|
let token = split_path[2];
|
||||||
|
|
||||||
println!("Got the parameters domain: {} and token: {}", domain, token);
|
println!("Got the path: {} and extracted the parameters domain: {} and token: {}", split_path, domain, token);
|
||||||
|
|
||||||
response = generate_feed(response, domain, token).await?;
|
response = generate_feed(response, domain, token).await?;
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in a new issue