11 lines
343 B
Gleam
11 lines
343 B
Gleam
import gleam/dynamic/decode.{type Decoder}
|
|
import spacetraders_sdk/models/engine_symbol.{type EngineSymbol}
|
|
|
|
pub type ScannedShipEngine {
|
|
ScannedShipEngine(symbol: EngineSymbol)
|
|
}
|
|
|
|
pub fn decoder() -> Decoder(ScannedShipEngine) {
|
|
use symbol <- decode.field("symbol", engine_symbol.decoder())
|
|
decode.success(ScannedShipEngine(symbol:))
|
|
}
|