command: add node-status command

This commit is contained in:
Ryan Uber
2015-09-12 13:55:51 -07:00
parent 74a0e11a9b
commit a0c8a0bc0d
3 changed files with 139 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
package command
import (
"testing"
"github.com/mitchellh/cli"
)
func TestNodeStatusCommand_Implements(t *testing.T) {
var _ cli.Command = &NodeStatusCommand{}
}