Fix: use curly braces rather than parentheses
This commit is contained in:
parent
a1a96f6457
commit
d23f48a3a9
|
@ -6,8 +6,8 @@ pub mod store;
|
||||||
|
|
||||||
// Refer to the tests to understand the expected schema.
|
// Refer to the tests to understand the expected schema.
|
||||||
pub enum Command {
|
pub enum Command {
|
||||||
Insert(todo!()),
|
Insert { todo!() },
|
||||||
Get(todo!()),
|
Get { todo!() }
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn launch() -> Sender<Command> {
|
pub fn launch() -> Sender<Command> {
|
||||||
|
|
Loading…
Reference in New Issue