Skip to content

Commit

Permalink
Refactor prompt message for backend database URL in create_project fu…
Browse files Browse the repository at this point in the history
…nction
  • Loading branch information
AnthonyMichaelTDM committed May 3, 2024
1 parent 11d0b48 commit a372046
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion create-rust-app_cli/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ fn create_project(
println!("Press Enter will use default backend database url as config");

Input::new()
.with_prompt(format!("{:?} url", backend_database))
.with_prompt(format!("{backend_database:?} url"))
.default("postgres://postgres:postgres@localhost/database".into())
.show_default(false)
.interact_text()?
Expand Down

0 comments on commit a372046

Please sign in to comment.