#297 Create Spring Boot-backed API Gateway that aggregates calls to the Image and Price microservices

This commit is contained in:
tmcconville
2016-04-02 18:25:13 -05:00
parent 01737bc643
commit 665256ecc0
14 changed files with 208 additions and 73 deletions
@@ -0,0 +1,8 @@
package com.iluwatar.api.gateway;
/**
* An interface used to communicate with the Image microservice
*/
public interface ImageClient {
String getImagePath();
}