// Copyright Epic Games, Inc. All Rights Reserved. #include "status.h" #include namespace zen { StatusCommand::StatusCommand() { } StatusCommand::~StatusCommand() = default; int StatusCommand::Run(const ZenCliOptions& GlobalOptions, int argc, char** argv) { ZEN_UNUSED(GlobalOptions, argc, argv); return 0; } } // namespace zen