diff --git a/backend/UserConfig.ts b/backend/UserConfig.ts new file mode 100644 index 0000000..bad2876 --- /dev/null +++ b/backend/UserConfig.ts @@ -0,0 +1,7 @@ + +export class UserConfig { + private config: UserConfiguration; + public getConfig = () => this.config; + + constructor(config?: UserConfiguration) { +}