[verified] refactor: establish service and frontend boundaries

This commit is contained in:
chick
2026-07-15 02:43:41 +08:00
parent 0ac6faa6a3
commit e04a16e817
29 changed files with 917 additions and 598 deletions
+6
View File
@@ -0,0 +1,6 @@
export class ConfigValidationError extends Error {
constructor(message) { super(message); this.name = 'ConfigValidationError' }
}
export class ConfigNotFoundError extends Error {
constructor(message) { super(message); this.name = 'ConfigNotFoundError' }
}