aboutsummaryrefslogtreecommitdiffstats
path: root/code/app/src/services/settings-service.ts
blob: a0a77d433e3a37cccf3521a1b50110bedd76a447 (plain) (blame)
1
2
3
4
5
6
7
8
9
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.");
    }
}