16 lines
237 B
Java
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";
|
||
|
}
|
||
|
}
|