// Copyright (c) Meta Platforms, Inc. and affiliates.
//
// This source code is licensed under the MIT license found in the
// LICENSE file in the root directory of this source tree.
// Export all command submodules to be used in main.rs
// Note: This "intermediate" commands module is purely for organizational purposes.
// This allows for a clear distinction between the command dispatching code and the command
// handling code. Additionally, explicitly "exporting" all the command modules here allows
// us to avoid having to explicitly list all the command modules in main.rs.
pub mod status;
pub mod version;
pub mod dcgm;
pub mod gputrace;
pub mod nputrace;
pub mod npumonitor;
pub mod utils;
// ... add new command modules here