initial commit
This commit is contained in:
7
exercises/08_futures/08_outro/Cargo.toml
Normal file
7
exercises/08_futures/08_outro/Cargo.toml
Normal file
@@ -0,0 +1,7 @@
|
||||
[package]
|
||||
name = "outro_08"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
[dependencies]
|
||||
tokio = { version = "1", features = ["full"] }
|
||||
10
exercises/08_futures/08_outro/src/lib.rs
Normal file
10
exercises/08_futures/08_outro/src/lib.rs
Normal file
@@ -0,0 +1,10 @@
|
||||
// This is our last exercise. Let's go down a more unstructured path!
|
||||
// Try writing an **asynchronous REST API** to expose the functionality
|
||||
// of the ticket management system we built throughout the course.
|
||||
// It should expose endpoints to:
|
||||
// - Create a ticket
|
||||
// - Retrieve ticket details
|
||||
// - Patch a ticket
|
||||
//
|
||||
// Use Rust's package registry, crates.io, to find the dependencies you need
|
||||
// (if any) to build this system.
|
||||
Reference in New Issue
Block a user