mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-06 17:05:34 +00:00
18 lines
339 B
Swift
18 lines
339 B
Swift
//
|
|
// LanguageResource.swift
|
|
// KeymanEngine
|
|
//
|
|
// Created by Joshua Horton on 8/16/19.
|
|
// Copyright © 2019 SIL International. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public enum LanguageResourceType {
|
|
case keyboard, lexicalModel
|
|
}
|
|
|
|
public protocol LanguageResource {
|
|
var id: String { get }
|
|
var languageID: String { get }
|
|
}
|