aboutsummaryrefslogtreecommitdiffstats
path: root/code/app/src/services/settings-service.ts
blob: 7f8cb2b276405d4a884ddd511cede98effa4f644 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
import type { ISettingsService } from "./abstractions/ISettingsService";

export class SettingsService implements ISettingsService {
    static resolve(): ISettingsService {
        return new SettingsService();
    }
    get_user_settings(): Promise<void> {
        throw new Error("Method not implemented.");
    }
}