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"; } }