mirror of
https://github.com/chesskit-app/chesskit-engine.git
synced 2026-05-19 15:50:35 +00:00
18 lines
297 B
Swift
18 lines
297 B
Swift
//
|
|
// EngineResponseID.swift
|
|
// ChessKitEngine
|
|
//
|
|
|
|
public extension EngineResponse {
|
|
|
|
/// Possible ID types that can be returned by
|
|
/// `EngineResponse.id`.
|
|
enum ID: Sendable {
|
|
/// The engine's name.
|
|
case name(String)
|
|
/// The engine's author(s).
|
|
case author(String)
|
|
}
|
|
|
|
}
|