From 184ccfbd534d0c22816c15f8c4856c2d676d1ca4 Mon Sep 17 00:00:00 2001 From: Alex Zenla Date: Fri, 8 Mar 2024 05:40:43 +0000 Subject: [PATCH] readme: update with new code paths --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 0ae8098..1cddb9e 100644 --- a/README.md +++ b/README.md @@ -42,12 +42,12 @@ Edera is building a company to compete in the hypervisor space with open-source krata is composed of three major executables: -| Executable | Runs On | User Interaction | Dev Runner | Code Path | -| ---------- | ------- | ---------------- | ------------------------ | ----------- | -| kratad | host | backend daemon | ./hack/debug/kratad.sh | daemon | -| kratanet | host | backend daemon | ./hack/debug/kratanet.sh | network | -| kratactl | host | CLI tool | ./hack/debug/kratactl.sh | controller | -| krataguest | guest | none, guest init | N/A | guest | +| Executable | Runs On | User Interaction | Dev Runner | Code Path | +| ---------- | ------- | ---------------- | ------------------------ | ----------------- | +| kratad | host | backend daemon | ./hack/debug/kratad.sh | crates/kratad | +| kratanet | host | backend daemon | ./hack/debug/kratanet.sh | crates/kratanet | +| kratactl | host | CLI tool | ./hack/debug/kratactl.sh | crates/kratactl | +| krataguest | guest | none, guest init | N/A | crates/krataguest | You will find the code to each executable available in the bin/ and src/ directories inside it's corresponding code path from the above table.