Files
omnivore/apple/OmnivoreKit/Sources/Services/DataService/Selections/FeatureSelection.swift
2024-04-16 21:00:27 +08:00

7 lines
155 B
Swift

import Models
import SwiftGraphQL
let featureSelection = Selection.Feature {
FeatureInternal(name: try $0.name(), enabled: try $0.grantedAt() != nil)
}