{-# LANGUAGE DataKinds #-}

module Cardano.CLI.Commands.Debug.CheckNodeConfiguration where

import           Cardano.Api

-- | Argument for the 'debug check-node-configuration' command.
newtype CheckNodeConfigCmdArgs = CheckNodeConfigCmdArgs (NodeConfigFile 'In)
  deriving Int -> CheckNodeConfigCmdArgs -> ShowS
[CheckNodeConfigCmdArgs] -> ShowS
CheckNodeConfigCmdArgs -> String
(Int -> CheckNodeConfigCmdArgs -> ShowS)
-> (CheckNodeConfigCmdArgs -> String)
-> ([CheckNodeConfigCmdArgs] -> ShowS)
-> Show CheckNodeConfigCmdArgs
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> CheckNodeConfigCmdArgs -> ShowS
showsPrec :: Int -> CheckNodeConfigCmdArgs -> ShowS
$cshow :: CheckNodeConfigCmdArgs -> String
show :: CheckNodeConfigCmdArgs -> String
$cshowList :: [CheckNodeConfigCmdArgs] -> ShowS
showList :: [CheckNodeConfigCmdArgs] -> ShowS
Show