mirror of
https://github.com/elicpeter/nyx.git
synced 2026-06-09 19:45:13 +02:00
18 lines
313 B
Java
18 lines
313 B
Java
|
|
package com.example;
|
||
|
|
|
||
|
|
import io.quarkus.runtime.Quarkus;
|
||
|
|
import jakarta.enterprise.context.ApplicationScoped;
|
||
|
|
import jakarta.ws.rs.GET;
|
||
|
|
import jakarta.ws.rs.Path;
|
||
|
|
|
||
|
|
@ApplicationScoped
|
||
|
|
@Path("/api")
|
||
|
|
public class GreetResource {
|
||
|
|
|
||
|
|
@GET
|
||
|
|
@Path("/hello")
|
||
|
|
public String hello() {
|
||
|
|
return "hi";
|
||
|
|
}
|
||
|
|
}
|