aboutsummaryrefslogtreecommitdiffstats
path: root/code/frontend/src/services/settings-service.ts
diff options
context:
space:
mode:
Diffstat (limited to 'code/frontend/src/services/settings-service.ts')
-rw-r--r--code/frontend/src/services/settings-service.ts10
1 files changed, 10 insertions, 0 deletions
diff --git a/code/frontend/src/services/settings-service.ts b/code/frontend/src/services/settings-service.ts
new file mode 100644
index 0000000..a0a77d4
--- /dev/null
+++ b/code/frontend/src/services/settings-service.ts
@@ -0,0 +1,10 @@
+import type { ISettingsService } from "./abstractions/ISettingsService";
+
+export class SettingService implements ISettingsService {
+ static resolve(): ISettingsService {
+ return new SettingService();
+ }
+ get_user_settings(): Promise<void> {
+ throw new Error("Method not implemented.");
+ }
+} \ No newline at end of file