solution to exercise 03_03

This commit is contained in:
David Doblas Jiménez 2024-06-19 15:03:51 +02:00
parent 8b78ea3a83
commit d3b4c0d653

View File

@ -1,6 +1,7 @@
mod helpers {
// TODO: Make this code compile, either by adding a `use` statement or by using
// the appropriate path to refer to the `Ticket` struct.
use super::Ticket;
fn create_todo_ticket(title: String, description: String) -> Ticket {
Ticket::new(title, description, "To-Do".into())