Fuel Pulse
A Java library to get the fuel prices in India by city.
Loading...
Searching...
No Matches
FetchHandler.java
Go to the documentation of this file.
1package io.github.amithkoujalgi.fuelprices;
2
3import io.github.amithkoujalgi.fuelprices.types.FuelType;
4
5import java.io.IOException;
6
7public interface FetchHandler {
8 float fetch(String city, FuelType fuelType) throws IOException;
9}
float fetch(String city, FuelType fuelType)