mirror of
https://github.com/mainmatter/100-exercises-to-learn-rust
synced 2024-12-25 21:58:26 +01:00
Add a TODO to make things more explicit.
This commit is contained in:
parent
d442b61795
commit
baca47f782
1 changed files with 2 additions and 2 deletions
|
@ -1,3 +1,5 @@
|
|||
// TODO: Set `move_forward` to `true` in `ready` when you think you're done with this exercise.
|
||||
// Feel free to call an instructor to verify your solution!
|
||||
use channels::data::TicketDraft;
|
||||
use channels::{launch, Command};
|
||||
use std::time::Duration;
|
||||
|
@ -24,8 +26,6 @@ fn ready() {
|
|||
// since our server doesn't expose any **read** actions.
|
||||
// We have no way to know if the inserts are actually happening and if they
|
||||
// are happening correctly.
|
||||
// Set `move_forward` to `true` when you think you're done with this exercise.
|
||||
// Feel free to call an instructor to verify your solution!
|
||||
let move_forward = false;
|
||||
|
||||
assert!(move_forward);
|
||||
|
|
Loading…
Reference in a new issue