default Timestamp getTimestamp()

in sdk-java/src/main/java/com/spotify/confidence/Clock.java [9:15]


  default Timestamp getTimestamp() {
    final Instant time = get();
    return Timestamp.newBuilder()
        .setSeconds(time.getEpochSecond())
        .setNanos(time.getNano())
        .build();
  }