Alvaro2112/Money_run

View on GitHub
app/src/main/java/sdp/moneyrun/location/LocationService.java

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
package sdp.moneyrun.location;

import androidx.annotation.Nullable;

public interface LocationService {
    /**
     * Finds the current location of the user and pass it to the given callback function.
     *
     * @return the current location of the user
     */
    @Nullable
    LocationRepresentation getCurrentLocation();
}