Skip to content

Commit

Permalink
Remove debuging capability.
Browse files Browse the repository at this point in the history
  • Loading branch information
lthibault committed Jul 14, 2023
1 parent 29af282 commit 0875783
Show file tree
Hide file tree
Showing 17 changed files with 56 additions and 809 deletions.
10 changes: 2 additions & 8 deletions api/cluster.capnp
Original file line number Diff line number Diff line change
Expand Up @@ -32,17 +32,11 @@ interface Host {
# Root returns the host's root Anchor, which confers access to
# all shared memory on the host.

debug @3 () -> (debugger :Capability);
# Debugger provides a set of tools for debugging live Wetware
# hosts. The debugger can potentially reveal sensitive data,
# including cryptographic secrets and SHOULD NOT be provided
# to untrusted parties.

registry @4 () -> (registry :import "registry.capnp".Registry);
registry @3 () -> (registry :import "registry.capnp".Registry);
# Registry returns a Service Registry capability, which is used for
# discovering and providing service. This way, applications can find each other.

executor @5 () -> (executor :import "process.capnp".Executor);
executor @4 () -> (executor :import "process.capnp".Executor);
# Executor provides a way of spawning and running WASM-based
# processes.
}
2 changes: 0 additions & 2 deletions cmd/ww/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ import (
"github.com/urfave/cli/v2"

"github.com/wetware/ww/internal/cmd/cluster"
"github.com/wetware/ww/internal/cmd/debug"
"github.com/wetware/ww/internal/cmd/run"
"github.com/wetware/ww/internal/cmd/start"
ww "github.com/wetware/ww/pkg"
Expand Down Expand Up @@ -60,7 +59,6 @@ var commands = []*cli.Command{
start.Command(),
cluster.Command(),
run.Command(),
debug.Command(),
}

func main() {
Expand Down
Loading

0 comments on commit 0875783

Please sign in to comment.