Config holds CLI authentication credentials.
| 10 | |
| 11 | // Config holds CLI authentication credentials. |
| 12 | type Config struct { |
| 13 | CliID string `yaml:"cli_id"` |
| 14 | APIKey *string `yaml:"api_key,omitempty"` |
| 15 | } |
| 16 | |
| 17 | // Dir returns ~/.cloudcent, creating it if needed. |
| 18 | func Dir() (string, error) { |
nothing calls this directly
no outgoing calls
no test coverage detected