testing inter service communication

Signed-off-by: Peter Siegmund <developer@mars3142.org>
This commit is contained in:
2024-10-16 21:48:24 +02:00
parent d6598742e9
commit 837d10a1b9
28 changed files with 89 additions and 229 deletions

View File

@@ -0,0 +1,9 @@
package dev.mars3142.fhq.client;
import org.springframework.web.service.annotation.GetExchange;
public interface TimeZoneClient {
@GetExchange("/v1/timezone")
String getTimeZone();
}