(name string, secure bool)
| 51 | } |
| 52 | |
| 53 | func New[T any](name string, secure bool) *Flag[T] { |
| 54 | return &Flag[T]{ |
| 55 | Name: name, |
| 56 | Secure: secure, |
| 57 | } |
| 58 | } |
| 59 | |
| 60 | // GenerateAutomationCmd generates the command that can be used to achive |
| 61 | // the same results with the CLI in automation mode. |
no outgoing calls
no test coverage detected