mirror of
https://github.com/elicpeter/nyx.git
synced 2026-06-09 19:45:13 +02:00
15 lines
204 B
Java
15 lines
204 B
Java
|
|
package com.example;
|
||
|
|
|
||
|
|
import jakarta.ws.rs.GET;
|
||
|
|
import jakarta.ws.rs.Path;
|
||
|
|
|
||
|
|
@Path("/users")
|
||
|
|
public class UserResource {
|
||
|
|
|
||
|
|
@GET
|
||
|
|
@Path("/{id}")
|
||
|
|
public String get() {
|
||
|
|
return "{}";
|
||
|
|
}
|
||
|
|
}
|