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

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