refactor: move template into src

This commit is contained in:
zhom
2025-07-28 16:48:03 +04:00
parent b9d6b9a146
commit 4a976c0ed1
4 changed files with 3 additions and 3 deletions
+3 -3
View File
@@ -13,9 +13,9 @@ impl EmbeddedTemplate {
/// Get the embedded template files
pub fn new() -> Self {
Self {
cargo_toml: include_str!("../template/Cargo.toml"),
build_rs: include_str!("../template/build.rs"),
main_rs: include_str!("../template/src/main.rs"),
cargo_toml: include_str!("./template/crg.toml"),
build_rs: include_str!("./template/build.rs"),
main_rs: include_str!("./template/src/main.rs"),
}
}