()
| 47 | } |
| 48 | |
| 49 | function buildCoreClient(): CloudypadClient { |
| 50 | const defaultConfig = new ConfigLoader().loadConfig() |
| 51 | |
| 52 | logger.debug("Building core client with config: " + JSON.stringify(defaultConfig)) |
| 53 | |
| 54 | const client = new CloudypadClient({ |
| 55 | config: defaultConfig |
| 56 | }) |
| 57 | return client |
| 58 | } |
| 59 | |
| 60 | function getCoreConfig(): CoreConfig { |
| 61 | const config = new ConfigLoader().loadConfig() |
no test coverage detected