()
| 41 | |
| 42 | // Config Management |
| 43 | async listConfig(): Promise<SystemConfig[]> { |
| 44 | return this.request<SystemConfig[]>("/v1/system/config"); |
| 45 | } |
| 46 | |
| 47 | async getConfig(key: string): Promise<SystemConfig> { |
| 48 | return this.request<SystemConfig>(`/v1/system/config/${key}`); |
no test coverage detected