We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb2b545 commit 449f873Copy full SHA for 449f873
crates/generate_blog/src/main.rs
@@ -8,8 +8,6 @@ use rust_team_data::v1::{Team, Teams};
8
const BASE_TEAM_WEBSITE_URL: &str = "https://www.rust-lang.org/governance/teams/";
9
10
fn main() -> Result<(), Box<dyn Error>> {
11
- println!("\nHi, thanks for writing a post for the Rust blog!\n");
12
-
13
// If we cannot load teams, we won't provide any autocompletion, but the generate
14
// command should still work.
15
let team_data = match load_teams() {
@@ -20,6 +18,8 @@ fn main() -> Result<(), Box<dyn Error>> {
20
18
}
21
19
};
22
+ println!("\nHi, thanks for writing a post for the Rust blog!\n");
+
23
let title = Text::new("What's the title of your post?")
24
.with_validator(|input: &str| {
25
if input.is_empty() {
0 commit comments