Phase 9.75-C: Convert HTTPServerBox, P2PBox, IntentBox to RwLock pattern

Co-authored-by: moe-charm <217100418+moe-charm@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2025-08-15 01:00:21 +00:00
parent 3a0ac23ee6
commit 95e093c767
4 changed files with 200 additions and 164 deletions

View File

@ -529,7 +529,7 @@ impl NyashInterpreter {
}
};
let intent_box = crate::boxes::intent_box::IntentBoxData::new(name, payload);
let intent_box = crate::boxes::intent_box::IntentBox::new(name, payload);
return Ok(Box::new(intent_box) as Box<dyn NyashBox>);
}