diff --git a/cmd/rove-server/internal/routes.go b/cmd/rove-server/internal/routes.go index 76485c4..264ede3 100644 --- a/cmd/rove-server/internal/routes.go +++ b/cmd/rove-server/internal/routes.go @@ -9,7 +9,7 @@ import ( "github.com/mdiluz/rove/pkg/version" ) -// Status returns the status of the current server to a gRPC request +// ServerStatus returns the status of the current server to a gRPC request func (s *Server) ServerStatus(context.Context, *rove.ServerStatusRequest) (*rove.ServerStatusResponse, error) { response := &rove.ServerStatusResponse{ Ready: true, diff --git a/cmd/rove/main.go b/cmd/rove/main.go index 4cb9075..1498c74 100644 --- a/cmd/rove/main.go +++ b/cmd/rove/main.go @@ -39,6 +39,7 @@ func printUsage() { fmt.Fprintln(os.Stderr, "\tmove BEARING moves the rover in the chosen direction") fmt.Fprintln(os.Stderr, "\tstash stores the object at the rover location in the inventory") fmt.Fprintln(os.Stderr, "\trepair uses an inventory object to repair the rover") + fmt.Fprintln(os.Stderr, "\trecharge wait a tick to recharge the rover") fmt.Fprintln(os.Stderr, "\nEnvironment") fmt.Fprintln(os.Stderr, "\tROVE_USER_DATA path to user data, defaults to "+defaultDataPath) }