fix wrong url being used for swagger
All checks were successful
Deploy App / docker (ubuntu-latest, 2.44.0, 17, 3.8.5) (push) Successful in 1m25s
All checks were successful
Deploy App / docker (ubuntu-latest, 2.44.0, 17, 3.8.5) (push) Successful in 1m25s
This commit is contained in:
@ -5,6 +5,7 @@ import io.swagger.v3.oas.annotations.OpenAPIDefinition;
|
||||
import io.swagger.v3.oas.annotations.info.Contact;
|
||||
import io.swagger.v3.oas.annotations.info.Info;
|
||||
import io.swagger.v3.oas.annotations.info.License;
|
||||
import io.swagger.v3.oas.annotations.servers.Server;
|
||||
import lombok.SneakyThrows;
|
||||
import lombok.extern.log4j.Log4j2;
|
||||
import org.springframework.boot.SpringApplication;
|
||||
@ -18,13 +19,6 @@ import java.util.Objects;
|
||||
|
||||
@Log4j2
|
||||
@SpringBootApplication
|
||||
@OpenAPIDefinition(info = @Info(
|
||||
title = "Minecraft Utilities API",
|
||||
version = "1.0",
|
||||
description = "Wrapper for the Minecraft APIs to make them easier to use.",
|
||||
contact = @Contact(name = "Liam", email = "liam@fascinated.cc", url = "https://fascinated.cc"),
|
||||
license = @License(name = "MIT License", url = "https://opensource.org/licenses/MIT")
|
||||
))
|
||||
public class Main {
|
||||
|
||||
public static final Gson GSON = new Gson();
|
||||
|
Reference in New Issue
Block a user