Skip to content

Commit

Permalink
refactor: fixing lint
Browse files Browse the repository at this point in the history
  • Loading branch information
notdanilo committed Dec 2, 2024
1 parent 8e015c5 commit f12421d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion cli/src/templates/program/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,10 @@ pub fn create_program_template_multiple(name: &str, program_path: &Path) -> File
src_path.join("constants.rs"),
include_str!("constants.rs.template").into(),
),
(src_path.join("error.rs"), include_str!("error.rs.template").into()),
(
src_path.join("error.rs"),
include_str!("error.rs.template").into(),
),
(
src_path.join("instructions").join("mod.rs"),
include_str!("instructions/mod.rs.template").into(),
Expand Down

0 comments on commit f12421d

Please sign in to comment.