feat: Application module architecture and placeholder features #70

Merged
letian merged 11 commits from feat/applicationModule into master 2025-07-01 19:40:43 +00:00
2 changed files with 0 additions and 4 deletions
Showing only changes of commit f512d8307a - Show all commits

View File

@ -66,9 +66,6 @@ impl<T: Topology> Clone for Box<dyn ApplicationFeature<T>> {
}
}
#[derive(Debug)]
pub struct BackupFeature;
#[async_trait]
impl<T: Topology> ApplicationFeature<T> for BackupFeature {
async fn ensure_installed(&self, _topology: &T) -> Result<(), String> {

View File

@ -119,7 +119,6 @@ async fn main() {
if args.prod {
todo!("implement prod deployment");
}
println!("harmony_bin_path: {}", harmony_bin_path.display());
let deploy_output = Command::new(harmony_bin_path)
.arg("-y")
.arg("-a")