Fix: use curly braces rather than parentheses

This commit is contained in:
LukeMathWalker 2024-05-13 15:30:50 +02:00
parent a1a96f6457
commit d23f48a3a9
1 changed files with 2 additions and 2 deletions

View File

@ -6,8 +6,8 @@ pub mod store;
// Refer to the tests to understand the expected schema.
pub enum Command {
Insert(todo!()),
Get(todo!()),
Insert { todo!() },
Get { todo!() }
}
pub fn launch() -> Sender<Command> {