spiegel-keyman/mac/KeymanSettings/Sources/Persistence/SettingsRepository.swift
Shawn Schantz 5cd8112532 feat(mac): add loading of kmp files
currently reads from the old data directory
UI is for testing only
2026-03-04 16:55:34 -05:00

23 lines
452 B
Swift

/*
* Keyman is copyright (C) SIL Global. MIT License.
*
* Created by Shawn Schantz on 2025-12-10
*
* SettingsRepository is responsible for reading, writing and removing
* settings stored in the UserDefaults
*
*/
import Foundation
public struct SettingsRepository {
fileprivate let keyboardsDirectoryName = "Keyman-Keyboards"
// keyman 18
fileprivate(set) var keyman18ApplicationSupportSubDirectory: URL?
public init() {
}
}