fix swagger base uri

Signed-off-by: Peter Siegmund <developer@mars3142.org>
This commit is contained in:
2024-10-28 14:15:42 +01:00
parent 1a924ebf6c
commit f8746fd0dc

View File

@@ -16,7 +16,7 @@ public class OpenAPIConfig {
.info(new Info().title("TimeZone API").version("1.0"))
.servers(
List.of(
new Server().url("https://api.firmware-hq.dev/v1/timezone"),
new Server().url("https://api.firmware-hq.dev"),
new Server().url("http://localhost:8090")
)
);