14 lines
187 B
Swift
14 lines
187 B
Swift
import Foundation
|
|
import OpenFoodFacts
|
|
|
|
let off = OpenFoodFactsClient()
|
|
off.prod = true
|
|
|
|
do {
|
|
|
|
let res = try await off.search("Coca-Cola")
|
|
print(res)
|
|
} catch {
|
|
print(error)
|
|
}
|