All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.quarkiverse.helm.tests.kubernetes.Endpoint Maven / Gradle / Ivy

The newest version!
package io.quarkiverse.helm.tests.kubernetes;

import jakarta.ws.rs.GET;
import jakarta.ws.rs.Path;

@Path("")
public class Endpoint {

    @GET
    public String hello() {
        return "Hello, World!";
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy