diff --git a/doc/tutorials/04_errors.md b/doc/tutorials/04_errors.md index d72646b788..2254cfa19e 100644 --- a/doc/tutorials/04_errors.md +++ b/doc/tutorials/04_errors.md @@ -1,5 +1,9 @@ # 4. Error handling +```{note} +The tutorial is also available [as a video](https://www.youtube.com/watch?v=iXGJsk4_2Dg). +``` + Many things can go wrong: that's why error handling is often the centerpiece of software libraries. We got a glimpse of one of Tapir's components when it comes to error handling when we discussed [adding OpenAPI documentation](02_openapi_docs.md). In this tutorial, we'll investigate Tapir's approach to error diff --git a/doc/tutorials/05_multiple_inputs_outputs.md b/doc/tutorials/05_multiple_inputs_outputs.md index 68b8cc2b13..341cc263ee 100644 --- a/doc/tutorials/05_multiple_inputs_outputs.md +++ b/doc/tutorials/05_multiple_inputs_outputs.md @@ -1,5 +1,9 @@ # 5. Multiple inputs & outputs +```{note} +The tutorial is also available [as a video](https://www.youtube.com/watch?v=rJAo9yZfr9k). +``` + In the tutorials so far we've seen how to use endpoints which have a single input and a single output, optionally with an additional single error output. However, most commonly you'll have multiple inputs and outputs. This can include multiple path, query parameters and headers, accompanied by a body as inputs, along with multiple output