(cmd *kingpin.CmdClause)
| 61 | ) |
| 62 | |
| 63 | func deploymentArg(cmd *kingpin.CmdClause) { |
| 64 | cmd.Arg("deployment", "File containing the nix deployment expression"). |
| 65 | HintFiles("nix"). |
| 66 | Required(). |
| 67 | ExistingFileVar(&deployment) |
| 68 | } |
| 69 | |
| 70 | func attributeArg(cmd *kingpin.CmdClause) { |
| 71 | cmd.Arg("attribute", "Name of attribute to inspect"). |
no outgoing calls
no test coverage detected