diff options
| author | ivarlovlie <git@ivarlovlie.no> | 2022-11-17 07:48:00 +0100 |
|---|---|---|
| committer | ivarlovlie <git@ivarlovlie.no> | 2022-11-17 07:48:00 +0100 |
| commit | 6ea5bd8c6ec089c278253d251f83c59ca5338dea (patch) | |
| tree | e74af816f5bde4cb398915c7b656ec36385b72bd /code/app/src/lib/services | |
| parent | 971a70d15e5531b59afd74556dc50214deeeafe9 (diff) | |
| download | greatoffice-6ea5bd8c6ec089c278253d251f83c59ca5338dea.tar.xz greatoffice-6ea5bd8c6ec089c278253d251f83c59ca5338dea.zip | |
refactor: Small changes
Diffstat (limited to 'code/app/src/lib/services')
| -rw-r--r-- | code/app/src/lib/services/settings-service.ts | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/code/app/src/lib/services/settings-service.ts b/code/app/src/lib/services/settings-service.ts index e69de29..6b801ac 100644 --- a/code/app/src/lib/services/settings-service.ts +++ b/code/app/src/lib/services/settings-service.ts @@ -0,0 +1,7 @@ +import type { ISettingsService } from "./abstractions/ISettingsService"; + +export class SettingsService implements ISettingsService { + get_user_settings(): Promise<void> { + throw new Error("Method not implemented."); + } +}
\ No newline at end of file |
