phm07
phm07
> Do you think it would be possible to add the `config.OptionQuiet` options inside the config struct? This way we would only have the config struct in the state and...
> I don't think it increases the duplication too much, it is moving some code around. Instead of having "complex" code in the business logic, we have dumb code in...
I started implementing the new mocks in the CLI: https://github.com/hetznercloud/cli/commit/43295830767194d1aaa7ff680d11223c08716e4b It saves us quite a bit of code there. Although it would be nicer if we had a unified interface...
This is still the case in 4.4.0+4180. 
> Is there any way we can validate the config once at startup instead of doing this whenever one wants to access an option? We could run this method one...
Why do we need a Makefile instead of doing it like in https://github.com/hetznercloud/cli/pull/901 with `go run -C ./tools`?
> Go 1.24 will add a `tool` directive to `go.mod` to specify these external binaries: https://tip.golang.org/doc/go1.24#go-command Wouldn't we need to update the module to 1.24 then as well? Since the...
Traffic is actually billed in €/TiB, not in €/TB, so we should adjust that. Then the units would also match.
You should already be able to just do this: ```sh $ hcloud server ssh myserver -v ```
> Aha, and the command is delimited by `--`, I see, nice. Yes, this is the default behavior as described in the [posix standard](https://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap12.html#tag_12_02): ``` Guideline 10: The first --...