(orgName string)
| 74 | } |
| 75 | |
| 76 | func WithOrgName(orgName string) Option { |
| 77 | return func(opt *newOptionalArg) { |
| 78 | opt.orgName = orgName |
| 79 | } |
| 80 | } |
| 81 | |
| 82 | // WithCLIVersion attaches the given CLI version (e.g. "v1.94.2-oss") to every |
| 83 | // outgoing request as the chainloop-cli-version header. |