mirror of
https://github.com/tiennm99/java-design-patterns.git
synced 2026-05-14 18:58:44 +00:00
9 lines
165 B
Java
9 lines
165 B
Java
package com.iluwatar.api.gateway;
|
|
|
|
/**
|
|
* An interface used to communicate with the Image microservice
|
|
*/
|
|
public interface ImageClient {
|
|
String getImagePath();
|
|
}
|