aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/house.rs5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/house.rs b/src/house.rs
index 64d8faf..06dd62f 100644
--- a/src/house.rs
+++ b/src/house.rs
@@ -64,6 +64,11 @@ impl House {
}
}
}
+
+ /// TODO: Implement and figure out what the hell I need to define one of these
+ pub fn introduce(&mut self, name: String, max_mem: Memory, max_cpus: CpuCount) -> Result<&Waifu, Error> {
+ unimplemented!();
+ }
}
#[cfg(test)]