Skip to content

Commit 033fe1f

Browse files
committed
Add the missing echo native module for testing.
1 parent 1f02f6b commit 033fe1f

File tree

1 file changed

+23
-0
lines changed
  • crates/execution-engine/src/native_modules

1 file changed

+23
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
use crate::native_modules::common::StaticNativeModule;
2+
use anyhow::Result;
3+
use std::{path::Path, fs::{read, write}};
4+
5+
pub(crate) struct EchoService;
6+
7+
impl StaticNativeModule for EchoService {
8+
fn name(&self) -> &str {
9+
"Echo Service"
10+
}
11+
12+
fn serve(&mut self, input: &Path, output: &Path) -> Result<()> {
13+
let buf = read(input)?;
14+
write(output, buf)?;
15+
Ok(())
16+
}
17+
}
18+
19+
impl EchoService {
20+
pub(crate) fn new() -> Self {
21+
Self {}
22+
}
23+
}

0 commit comments

Comments
 (0)