diff options
author | Zach Koopmans <zkoopmans@google.com> | 2021-02-10 10:46:31 -0800 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2021-02-10 10:48:48 -0800 |
commit | 1ac58cc23e7c069ff59ddea333a89c5c5972a555 (patch) | |
tree | af20919ec18fd1a600c103401dc1729e733beebc /runsc/cli | |
parent | b9db7db3bdfe1405d14465bb7ad8fb33637fd840 (diff) |
Add mitigate command to runsc
PiperOrigin-RevId: 356772367
Diffstat (limited to 'runsc/cli')
-rw-r--r-- | runsc/cli/main.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/runsc/cli/main.go b/runsc/cli/main.go index 6c3bf4d21..bf6928941 100644 --- a/runsc/cli/main.go +++ b/runsc/cli/main.go @@ -85,6 +85,7 @@ func Main(version string) { subcommands.Register(new(cmd.Start), "") subcommands.Register(new(cmd.Symbolize), "") subcommands.Register(new(cmd.Wait), "") + subcommands.Register(new(cmd.Mitigate), "") // Register internal commands with the internal group name. This causes // them to be sorted below the user-facing commands with empty group. |