2016-02-07 17:05:33 -06:00

16 lines
237 B
Java

package com.iluwatar.api.gateway;
/**
* Represents a microservice used to retrieve price data.
*/
public class PriceService {
/**
* Gets the price
* @return the price
*/
public String getPrice() {
return "20";
}
}