aboutsummaryrefslogtreecommitdiffstats
path: root/code/app/src/services/settings-service.ts
blob: 20053a92f267204f157017e5bd13f7059196dcfd (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.");
    }
}