From efc547719531d90b32867dda47da506441178d6e Mon Sep 17 00:00:00 2001 From: Henrique Alves Date: Wed, 19 Apr 2023 09:56:27 -0300 Subject: Add inquire to add command --- src/content.rs | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) (limited to 'src/content.rs') diff --git a/src/content.rs b/src/content.rs index 94ea18d..b31b033 100644 --- a/src/content.rs +++ b/src/content.rs @@ -1,6 +1,5 @@ pub fn create_gitignore_file() -> String { - return -r#"# Godot 4+ ignores + return r#"# Godot 4+ ignores .godot/ # Godot 3 ignores @@ -14,19 +13,19 @@ r#"# Godot 4+ ignores data_*/ # Glam-specific ignores -.glam.d/"#.to_string(); +.glam.d/"# + .to_string(); } pub fn create_gdignore_file() -> String { - return -r#"# Hide this folder from Godot editor"#.to_string(); + return r#"# Hide this folder from Godot editor"#.to_string(); } pub fn create_glam_file() -> String { - return -r#"{ + return r#"{ "packages" : [ ] } -"#.to_string(); +"# + .to_string(); } -- cgit v1.2.3