12 lines
221 B
Swift
12 lines
221 B
Swift
import Foundation
|
|
import OpenFoodFacts
|
|
|
|
let off = OpenFoodFactsClient()
|
|
|
|
do {
|
|
let res = try await off.getProductByBarcode("3017620422003")
|
|
print(res.product!.nutriments!.energy!)
|
|
} catch {
|
|
print("\(error)")
|
|
}
|