17 lines
318 B
Java
17 lines
318 B
Java
/**
|
|
*
|
|
*/
|
|
package io.pratik;
|
|
|
|
/**
|
|
* @author pratikdas
|
|
*
|
|
*/
|
|
public interface URLConstants {
|
|
|
|
String URL = "https://weatherbit-v1-mashape.p.rapidapi.com/forecast/3hourly?lat=35.5&lon=-78.5";
|
|
String API_KEY_NAME = "x-rapidapi-key";
|
|
String API_KEY_VALUE = "4b49c6b973mshf6e97423e8978fbp1d33aejsn287ed2a6d10d";
|
|
|
|
}
|