()
| 52 | } |
| 53 | |
| 54 | export function loadSystemSettings() { |
| 55 | return _loadSystemFile(); |
| 56 | } |
| 57 | |
| 58 | const flattenZodObject = (schema: Z.ZodObject<any>, prefix = ""): string[] => { |
| 59 | return Object.entries(schema.shape).flatMap(([key, value]) => { |
no test coverage detected