Commit 9e6f7f4b by Patryk Czarnik

Odczyt czasu - pierwsza wersja

parent c7532444
package hello;
import jakarta.ws.rs.GET;
import jakarta.ws.rs.Path;
import java.time.LocalDateTime;
@Path("dt")
public class DataCzas {
@GET
public String odczytajDataICzas() {
return LocalDateTime.now().toString();
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment