()
| 31 | } |
| 32 | |
| 33 | func NewCloneFlags() *CloneFlags { |
| 34 | return &CloneFlags{ |
| 35 | Name: flag.New[string](FlagName, false), |
| 36 | Description: flag.New[string](FlagDescription, false), |
| 37 | SourceTenant: flag.New[string](FlagSourceTenant, false), |
| 38 | } |
| 39 | } |
| 40 | |
| 41 | type CloneOptions struct { |
| 42 | *CloneFlags |
no outgoing calls