Support healthy check for registered services
[msb/java-sdk.git] / example / src / main / java / org / onap / msb / sdk / example / client / AnimalServiceClient.java
index cd9ebbb..aa6b9e3 100644 (file)
@@ -23,6 +23,6 @@ import retrofit2.http.Path;
 @ServiceHttpEndPoint(serviceName = "animals", serviceVersion = "v1")
 public interface AnimalServiceClient {
 
-  @GET("animals/{name}")
-  Call<Animal> queryAnimal(@Path("name") String name);
+    @GET("animals/{name}")
+    Call<Animal> queryAnimal(@Path("name") String name);
 }