| 11 | ) |
| 12 | |
| 13 | type FlightAPI interface { |
| 14 | SearchFlights( |
| 15 | ctx context.Context, |
| 16 | origin, destination string, |
| 17 | date time.Time, |
| 18 | ) ([]entity.Flight, error) |
| 19 | } |
| 20 | |
| 21 | func NewFlightAPIs( |
| 22 | a *amadeusapi.AmadeusAPI, |
no outgoing calls
no test coverage detected